Nasm汇编GDB调试
1. 示例代码
section .data
message db "hello, nasm!", 0ah
msgLen equ $-message
section .text
global _start
_start:
mov eax, 4
mov ebx, 1
mov ecx, message
mov edx, msgLen
int 80h
mov eax, 1
mov ebx, 0
int 80h
2. 调
原创
2021-05-18 00:10:11 ·
2127 阅读 ·
0 评论