RosettaCodeData/Task/Empty-program/8086-Assembly/empty-program-2.8086

9 lines
98 B
Text
Raw Permalink Normal View History

2016-12-05 22:15:40 +01:00
segment .text
global _start
_start:
mov eax, 60
xor edi, edi
syscall
end