7 lines
70 B
Text
7 lines
70 B
Text
section .text
|
|
global _start
|
|
|
|
_start:
|
|
mov eax, 1
|
|
int 0x80
|
|
ret
|