我决定为了好玩而学习汇编程序。我已经用 C 编码多年了。
我遵循了一些打印“Hello world”的在线教程,并在 NASM 手册中进行了一些研究。一切都很好。所以,我给自己设置了一个循环打印“hello world”的任务。我知道我可以使用loop
操作码来做到这一点,但想显式地对其进行编码并使用该.bss
部分中定义的变量。
但是,当我收到错误消息时,我显然误解了变量赋值在汇编中的工作方式:
nasm -felf -o hello.o hello.asm
hello.asm:16: error: invalid combination of opcode and operands
hello.asm:17: error: invalid combination of opcode and operands
hello.asm:28: error: invalid combination of opcode and operands
我尝试在网上搜索有关变量分配的信息,包括 NASM 手册,但似乎找不到我需要的信息。有人可以帮忙吗?这是我的(简单!)代码:
; print "Hello world!" to the screen multiple times
section .data
msg: db 'Hello world!', 10
msglen: equ $ - msg
section .bss
iter: resb 1
section .text
global _start
_start:
; loop 10 times
mov iter, 0 ; initalise loop counter
FL: cmp iter, 10 ; is iter == 10?
jge LoopEnd
; write the message to STDOUT:
mov eax,4 ; code for write syscall
mov ebx,1 ; stdout fd
mov ecx,msg ; message to print...
mov edx,msglen ; ...and it's length
int 80h ; kernel interrupt
; increment loop iterator
inc iter
jp FL
LoopEnd:
; now exit, with return code 0:
mov eax,1
mov ebx,0
int 80h