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

9 lines
98 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
segment .text
global _start
_start:
mov eax, 60
xor edi, edi
syscall
end