Name: Anonymous 2009-07-20 17:20
than FUNCTIONAL PROGRAMMING!
section .data
msg: db 'Hello, world!',10
msgL: equ $-msg
section .text
global _start
_start:
mov rax,1
mov rdi,1
mov rsi,msg
mov rdx,msgL
syscall
mov rax,60
mov rdi,0
syscallsection .data
msg: db 'Hello, world!',10
msgL: equ $-msg
section .text
global _start
_start:
mov eax,4
mov ebx,1
mov edx,msg
mov ecx,msgL
int 80h
mov eax,1
mov ebx,0
int 80h