kvs/квс/test1.asm
2025-10-24 04:45:07 +03:00

19 lines
357 B
NASM
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

section .text
global _start
_start:
; Простые случаи с разными базовыми регистрами
push qword [rax]
pop qword [rax]
push qword [rbx]
pop qword [rbx]
push qword [rsp]
pop qword [rsp]
push qword [rbp]
pop qword [rbp]
;mov rax, 60
;mov rdi, 0
;syscall