在dos中编写使用INT 21H的8086汇编程序
我需要编写 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
该可执行文件名为
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.