Skip to content

Instantly share code, notes, and snippets.

Created May 1, 2016 21:08
Show Gist options
  • Save anonymous/ecba3950faa63a4fff4d4573bbc8d0d2 to your computer and use it in GitHub Desktop.
Save anonymous/ecba3950faa63a4fff4d4573bbc8d0d2 to your computer and use it in GitHub Desktop.
GNU nano 2.2.6 File: Hello.asm
section .text
global _start:
_start:
mov edx, len
mov ecx, msg
mov ebx, 1
mov eax, 4
int 0x80
mov eax, 1
int 0x80
section .rodata
msg db 'Hello World\n'
len equ $-msg
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment