You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
199 B
20 lines
199 B
6 months ago
|
global _start
|
||
|
|
||
|
extern LibNasm1Func
|
||
|
|
||
|
section .text
|
||
|
_start:
|
||
|
xor rax, rax
|
||
|
call LibNasm1Func
|
||
|
cmp rax, 1
|
||
|
jne err
|
||
|
|
||
|
mov rax, 60
|
||
|
xor rdi, rdi
|
||
|
syscall
|
||
|
|
||
|
err:
|
||
|
mov rax, 60
|
||
|
mov rdi, 1
|
||
|
syscall
|