以下是x86汇编程序,该程序由NASM在64位CentOS上通过没有 gdb
且不允许安装的远程终端进行汇编要么。
#include <stdio.h>
extern "C" void looping_test();
int main(void)
{
looping_test();
return 0;
}
extern printf
section .data
hello: db 'Hello World!', 20
helloLen: equ $-hello
section .text
global looping_test
looping_test: ; print "Hello World" 5 times
mov ecx, 0; initialize the counter
while_loop_lt:
push hello
call printf
inc ecx
cmp ecx, 4; This is exit control loop.
je end_while_loop_lt
end_while_loop_lt:
ret
CC = g++
ASMBIN = nasm
all : asm cc link
asm :
$(ASMBIN) -o func.o -f elf -g -l func.lst func.asm
cc :
$(CC) -m32 -c -g -O0 main.cpp &> errors.txt
link :
$(CC) -m32 -g -o test main.o func.o
clean :
rm *.o
rm test
rm errors.txt
rm func.lst
输出:
[me@my_remote_server basic-assm]$ make
nasm -o func.o -f elf -g -l func.lst func.asm
g++ -m32 -c -g -O0 main.cpp &> errors.txt
g++ -m32 -g -o test main.o func.o
[me@my_remote_server basic-assm]$ ./test
Segmentation fault
[me@my_remote_server basic-assm]$
为什么我的程序给我分段错误?
答案 0 :(得分:0)
我已经根据 @MichaelPetch 和 @PeterCordes 的注释进行了修改,并从以下源代码获得了所需的输出:
extern printf
section .data
hello: db "Hello World!", 20
helloLen: equ $-hello
section .text
global looping_test
looping_test: ; print "Hello World" 5 times
mov ebx, 0 ; initialize the counter
while_loop_lt:
push hello
call printf
add esp, 4
inc ebx
cmp ebx, 5 ; This is exit control loop.
je end_while_loop_lt
jmp while_loop_lt
end_while_loop_lt:
ret