- Category:
- SCM
- Tags:
-
[PDF]
- File Size:
- 500kb
- Update:
- 2012-11-26
- Downloads:
- 0 Times
- Uploaded by:
- daricktq
Description: section .data .data
mensaje db "Hola con NASM" mensaje: .ascii "hola con GAS\n"
mensaje_SIZE equ $ mensaje mensaje_SIZE = . mensaje
section .text .text
global _start .globl _start
_start: _start:
mov ecx, mensaje movl $mensaje, ecx
mov edx, mensaje_SIZE movl $mensaje_SIZE, edx
mov eax, 4 movl $4, eax
mov ebx, 1 movl $1, ebx
int 80h int $0x80
mov ebx,0 movl $0, ebx
mov eax,1 movl $1, eax
int 0x80 int $0x80
To Search:
File list (Check if you may need any files):
2_resumen_nasm_gas.pdf