我想用linux系统调用写一个非常简单的宏:
%macro hello_macro 1
section .rodata
%%string1: dd "hello: ",0
section .bss
%%string2: resd 1
section .text
;global %%_start1
%%_start1:
mov dword[%%string1],%1 ;mov argument to string
;system call write in stdout
mov eax,4
mov ebx,1
mov ecx,dword[%%string1]
mov edx,6
int 80h
;same
mov eax,4
mov ebx,1
mov ecx,dword[%%string2]
mov edx,4 ;it's 4 bytes so I assume it's 4 chars length.
int 80h
%endmacro
我这样称呼它(在.text部分):
hello_macro 0x00613233
问题是它什么也没做(甚至是错误)!
我以这种方式编译它(没有makefile):
nasm -f elf -o 2.o 2.s
gcc -o 2 2.o
2.c 是文件。天呐!