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