在dos中编写使用INT 21H的8086汇编程序

发布于 2024-12-11 07:08:03 字数 497 浏览 0 评论 0原文

我需要编写 8086 汇编程序来执行以下操作: -从键盘读取2个数字 -显示这些数字的总和

到目前为止我得到的提示: 键盘将 ASCII 代码存储在寄存器和寄存器中。我会读它 我需要使用一些名为INT 21H的ISR(中断服务例程)

我将使用的工具: Microsoft 汇编器

代码模板的示例是:

.model small
.stack 100h
.data
.code
.exit 
.end 

,注意.exit相当于

mov AH,4CH
INT 21H

我的问题是如何做到这一点,汇编器没有任何GUI,不要'不知道如何编译它并从中生成.exe,一般来说你可以通过解释来解决它吗?

I need to write 8086 assembly program that do the following :
-Reads 2 numbers from the keyboard
-Display the summation of those numbers

The hints I got till now :
The keyboard will store the ASCII code in a register & I will read it
I need to use some ISR(interrupt service routine ) called INT 21H

The tools I will use :
Microsoft assembler

An example of the code template is :

.model small
.stack 100h
.data
.code
.exit 
.end 

, note .exit is equivalent to

mov AH,4CH
INT 21H

My question is how to do it , the assembler doesn't have any GUI , don't know how to compile it and make .exe from it , in general can you solve it with explain ??

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

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

发布评论

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

评论(1

Oo萌小芽oO 2024-12-18 07:08:03

该可执行文件名为 ml.exe,通常从命令提示符调用,但如果您使用 .asm 扩展名命名源文件,您的 GUI 可能会自动调用它。

它将尝试将源文件组装成目标文件,然后调用链接器从目标文件创建可执行文件。使用 ml /? 获取选项列表。

The executable is called ml.exe and is typically invoked from the command prompt, although your GUI may automatically invoke it if you name your source file with an .asm extension.

It will try to assemble your source file into an object file and then invoke the linker to create an executable from the object file. Use ml /? to get a list of options.

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