0

我想用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 是文件。天呐!

4

1 回答 1

1

我不知道为什么你没有收到任何错误,因为你在这一行引用了一个未定义的变量:

mov dword[%%string],%1 ;mov argument to string

估计应该是%%string2

mov dword[%%string2],%1 ;mov argument to string

我可以看到的另一个问题是 ecx 应该设置为您要写入的字符串的地址。像这样:

mov ecx,%%string1

在您当前的代码中,您将 ecx 设置为该字符串的前四个字节。

于 2013-06-27T11:32:27.517 回答