t1nman

Arch_hello

May 2nd, 2012
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. extern ExitProcess
  2.  
  3. %include "io.inc"
  4.  
  5. section .text use32
  6.  
  7. ..start:
  8.         push len
  9.         push msg
  10.         call outa
  11.  
  12.         push dword 0
  13.         call ExitProcess
  14.        
  15. section .data
  16.     msg db "Hello, Console!", 0xa
  17.     len equ $ - msg
Advertisement
Add Comment
Please, Sign In to add comment