17 lines
146 B
NASM
17 lines
146 B
NASM
section .text
|
|
global _start
|
|
|
|
|
|
_start:
|
|
mov rax, 1000H
|
|
mov rbx, 2000H
|
|
jmp add_1
|
|
|
|
add_1:
|
|
add rax, rbx
|
|
|
|
; not good
|
|
mov rax, 60
|
|
xor rdi, rdi;
|
|
syscall
|