发布时间:2012-12-29 22:20:32
nasm -f elf f.asmld -m elf_i386 -s -o f.out f.o 点击(此处)折叠或打开section.data hello: db 'Hello world!', 10 helloLen: equ 13section .textglobal _start_start: mov eax, 4 mov ebx, 1 mov ecx, hello mov edx, helloLen int 80h mov eax, 1 mov ebx, 0 int 80h......【阅读全文】