RosettaCodeData/Task/Empty-program/X86-Assembly/empty-program-1.x86

8 lines
70 B
Text
Raw Permalink Normal View History

2013-04-10 22:43:41 -07:00
section .text
global _start
_start:
mov eax, 1
int 0x80
ret