DOS 汇编 简单数学

发布于 2024-08-09 09:18:22 字数 337 浏览 8 评论 0原文

我在 dl 中存储了一个号码,我需要它来处理最多三位数的号码吗?这是数字 0-9 的工作代码。

WriteNumber:
;; print out number in dl
push ax
push dx
add dl,"0"
mov ah,02h ; printing one char
int 21h
pop dx
pop ax
ret

例如,对于两位数。我可以服用 dl/10。然后根据不同的字符打印出结果和其余部分。但我得到了一个错误,因为该数字需要位于 DIV 的 AX 寄存器中。

我需要这样做:

mov ax,dl

但这行不通?

I have a number stored in dl, and I need this to work for numbers up to three digits? Here is the working code for digits 0-9.

WriteNumber:
;; print out number in dl
push ax
push dx
add dl,"0"
mov ah,02h ; printing one char
int 21h
pop dx
pop ax
ret

For example, for two digits. I could take dl/10. And then print out the result and the rest as to different chars. But I got an error, because the number needs to be in AX register for the DIV.

I need to do this:

mov ax,dl

But that won't work?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

风向决定发型 2024-08-16 09:18:22

我认为您无法执行

mov ax,dl ,

因为 ax 和 dl 的大小不同。您应该能够

执行 mov ax, dx

或从 GJ

执行: movzx ax, dl ,

然后如果您只想要最后一个字节,则只需引用 dl 和 al 即可。

I don't think you'll be able to do

mov ax,dl

since ax and dl are different sizes. You should be able to do

mov ax, dx

or from GJ:

movzx ax, dl

And then just reference dl and al if you want just the last byte.

绿光 2024-08-16 09:18:22

我需要这样做:

mov ax,dl

但这行不通?

如果寄存器大小相同(8 位、16 位或 32 位),则 mov 将起作用。

例子:

mov EAX, EDX
; or
mov AX, DX
; or
mov AL, DL

I need to do this:

mov ax,dl

But that won't work?

mov will work if the registers have the same size, both 8bit or 16bit or 32bit.

Example:

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