56

#Programming alone

print "Hello World!"

#Programming while someone watches

global _start

section .data
msg db "Hello, World!", 10
len equ $ - msg
section .text
_start:
mov rax, 4
mov rbx, 1
mov rcx, msg
mov rdx, len
int 0x80
mov rax, 1
mov rbx, 0
int 0x80

Comments
Add Comment