Skip to content

Instantly share code, notes, and snippets.

@klange
Created July 1, 2011 17:23
Show Gist options
  • Save klange/1059004 to your computer and use it in GitHub Desktop.
Save klange/1059004 to your computer and use it in GitHub Desktop.
BITS 32
global _start
_start:
pop eax
extern main
call main
mov ebx, eax
mov eax, 0x0
int 0x7F
_wait:
hlt
jmp _wait
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment