寻求帮助解决 D 程序中的内联汇编问题
你好,我正在尝试在一个小D程序中使用ASM:
asm
{
mov AX,12h ;
int 10h ;
}
我收到了这样的消息:来自asm语句中的两行的“指令结束”
我无法解决这个问题,
这就是为什么我向你寻求帮助。
谢谢你的回答
我为我的英语道歉
Hello I'm trying to use ASM in a little D program :
asm
{
mov AX,12h ;
int 10h ;
}
I've got this message : "end of instruction" from the two lines in the asm statement
I cannot fix the issue,
that's why I'me asking help from you.
thanks for your answer
I apologize for my english
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由于asm语句嵌入在D中,因此必须使用D数字语法。也就是说,对于十六进制数字,使用 0xNUMBER 而不是 NUMBERh。所以,
Since asm statements are embedded in D, you have to use D number syntax. That is, 0xNUMBER instead of NUMBERh for hexadecimal numbers. So,