Created
May 8, 2012 20:55
-
-
Save qoelet/2639209 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SECTION .data | |
HelloWorld: db "Hello World of Assembly!",10 | |
MsgLen: equ $-HelloWorld | |
SECTION .bss | |
SECTION .text | |
global _start | |
_start: | |
nop | |
mov eax,4 | |
mov ebx,1 | |
mov ecx,HelloWorld | |
mov edx,MsgLen | |
int 80H | |
mov eax,1 | |
mov ebx,0 | |
int 80H |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment