8 lines
98 B
Text
8 lines
98 B
Text
segment .text
|
|
global _start
|
|
|
|
_start:
|
|
mov eax, 60
|
|
xor edi, edi
|
|
syscall
|
|
end
|