2008年1月9日 星期三

Hello world


BITS 32

;section .text
;global _start
;_start:
jmp short two

one:
pop ecx ; using the db
; write
xor eax,eax
mov al, 4
xor ebx,ebx
mov bl, 1
xor edx, edx
mov dl, 13
int 0x80

;exit
xor eax,eax
mov al, 1
xor ebx, ebx
int 0x80

two:
call one
db "Hello_World!!"

沒有留言: