我正在尝试将我的简单程序从Intel语法转换为AT& T(用GAS编译)。我已成功转换了应用程序的很大一部分,但我仍然遇到int
(中断)的错误。我的功能是这样的:
printf:
mov $0x0e, %ah
mov $0x07, %bl
nextchar:
lodsb
or %al, %al
jz return
int 10
jmp nextchar
return:
ret
msg db "Welcome To Track!", 0Ah
但是当我编译它时,我得到了这个:
hello.S:汇编程序消息:
的操作数大小不匹配
hello.S:13:错误:int'
msg db“Hello,World!”,0Ah'
hello.S:19: Error: no such instruction:
我需要做什么?
答案 0 :(得分:6)
在GAS
中,常量需要$
。将该行更改为:
int $10
你的信息应该是:
msg: .byte "Welcome to Track!", 0x0a
甚至更好:
msg: .asciiz "Welcome to Track!\n"
答案 1 :(得分:0)
另外,如果32位编译器在中断之前可能需要“.code16”而在...之后需要“.code32”。