寻求帮助解决 D 程序中的内联汇编问题

发布于 2024-12-06 04:11:57 字数 210 浏览 0 评论 0原文

你好,我正在尝试在一个小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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

忘东忘西忘不掉你 2024-12-13 04:11:57

由于asm语句嵌入在D中,因此必须使用D数字语法。也就是说,对于十六进制数字,使用 0xNUMBER 而不是 NUMBERh。所以,

asm { mov AX, 0x12; int 0x10; }

Since asm statements are embedded in D, you have to use D number syntax. That is, 0xNUMBER instead of NUMBERh for hexadecimal numbers. So,

asm { mov AX, 0x12; int 0x10; }

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文