RosettaCodeData/Task/Hello-world-Standard-error/X86-Assembly/hello-world-standard-error.x86
Ingy döt Net d066446780 langs a-z
2013-04-10 22:43:41 -07:00

15 lines
288 B
Text

section .data
msg db 'Goodbye, World!', 0AH
len equ $-msg
section .text
global _start
_start: mov edx, len
mov ecx, msg
mov ebx, 2
mov eax, 4
int 80h
mov ebx, 1
mov eax, 1
int 80h