如何打印出给定尺寸的方格_打印给定号码的表格| 8086微处理器

如何打印出给定尺寸的方格

Problem statement:

问题陈述:

Write an assembly language program in 8086 to print the table of a given integer.

在8086中编写汇编语言程序以打印给定整数的表。

Assumptions: Suppose the inputted number is at memory location 500 and the table will be printed from starting location 600 till 609 in hexadecimal.

假设:假设输入的数字位于存储位置500,并且表格将从起始位置600到609以十六进制打印。

Algorithm:

算法:

  1. Load input number address in SI and also load the address where we want output in DI .

    在SI中加载输入数字地址,并在DI中加载我们要输出的地址。

  2. Store 00 in CH register.

    将00存储在CH寄存器中。

  3. Increment value of CH by 1 and move the content of [SI] into AH register.

    将CH的值递增1,然后将[SI]的内容移到AH寄存器中。

  4. Multiply content of AL and CH and store it in AX and then move content of AL into [DI], then increment value of DI by 1.

    将AL和CH的内容相乘并将其存储在AX中,然后将AL的内容移至[DI],然后将DI的值加1。

  5. Compare the value of CH and 0A, if not equal then go to step number 3 otherwise halt the program.

    比较CH和0A的值,如果不相等,则转到第3步,否则暂停程序。

Program:

程序:

ADDRESSMNEMONICSCOMMENTS
400MOV SI, 500SI
403MOV DI, 600DI
406MOV CH, 00CH
408INC CHCH
409MOV AL, [SI]AL
40BMUL CHAX
40DMOV [DI], AL[DI]
40FINC DIDI
410CMP CH, 0ACH-0A
413JNZ 408jump to address 408 if zero flag is 0
415HLTTerminates the program
地址 记忆 注释
400 MOV SI,500 SI
403 MOV DI,600 DI
406 MOV CH,00 CH
408 INC CH CH
409 MOV AL,[SI]
40B UL 斧头
40D MOV [DI],AL [DI]
40楼 INC DI DI
410 CMP CH,0A CH-0A
413 JNZ 408 如果零标志为0,则跳转到地址408
415 HLT 终止程序

Explanation:

说明:

  1. MOV SI, 500: load 500 in SI.

    MOV SI,500:在SI中加载500。

  2. MOV DI, 600: load 600 in DI.

    MOV DI,600:在DI中加载600。

  3. MOV CH, 00: load 00 data in CH register.

    MOV CH,00:将00数据加载到CH寄存器中。

  4. INC CH: increment the value inside CH register by 1.

    INC CH:将CH寄存器中的值加1。

  5. MOV AL, SI: move the content of SI into AL register.

    MOV AL,SI:将SI的内容移到AL寄存器中。

  6. MUL CH: multiply the contents of AL and CH register and store in AX register.

    MUL CH:将AL和CH寄存器的内容相乘并存储在AX寄存器中。

  7. MOV [DI], AL: move the contents of AL register into [DI].

    MOV [DI],AL:将AL寄存器的内容移至[DI]。

  8. INC DI: increment the value of DI by 1.

    INC DI:将DI的值增加1。

  9. CMP CH, 0A: subtract data inside CH register and 0A.

    CMP CH,0A:将CH寄存器和0A内的数据相减。

  10. JNZ 408: jump to address 408 if zero flag is 0.

    JNZ 408:如果零标志为0,则跳转到地址408。

  11. HLT: terminate the program.

    HLT:终止程序。

翻译自: https://www.includehelp.com/embedded-system/print-the-table-of-a-given-number-using-8086-microprocessor.aspx

如何打印出给定尺寸的方格

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/542720.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

python自动更新excel数据_如何更新Excel数据?(刷新所有查询)

我有一个带有一些查询的Excel xlsm文件。目前我每天打开它,点击“数据”选项卡中的“全部刷新”命令。我希望这件事能自动完成。我用python编写了一个脚本(我是python新手)。问题是,刷新数据并保存Excel文件后,刷新的数据不可见(我知道刷新工…

mongoDB 使用手册

2019独角兽企业重金招聘Python工程师标准>>> 1、基本操作db.AddUser(username,password) 添加用户db.auth(usrename,password) 设置数据库连接验证db.cloneDataBase(fromhost) 从目标服务器克隆一个数据库db.commandHelp(name) returns the help for the commanddb.…

android搜索框功能实现_巧用 Trie 树,实现搜索引擎关键词提示功能

来源 | 码海责编 | Carol封图 | CSDN 付费下载于视觉中国我们几乎每天都在用搜索引擎搜索信息,相信大家肯定有注意过这样一个细节:当输入某个字符的时候,搜索引框底下会出现多个推荐词,如下,输入「python」后,底下会出…

Python | 从用户输入数据,保存到文件,读取并打印

Here, we have to input the data from the user, to read the data from user, we use input() method, and then the input data we have to store in the file by using write() method and then by using read() method we can get the data. 在这里,我们必须从…

python语句print type 1234的输出结果是_Python语句 print(type(1J))的输出结果是

【填空题】遍历输出文件所有行。 fopen("d:\\r2.txt","r") while True: str print(str,end) if not str: break f.close()【单选题】执行下列 Python语句将产生的结果是( ) i1 if (i): print(True) else: print( False)【单选题】Python语句 print(type(1/…

qt5.9.0调试如何查看变量的值_深入了解 Java 调试

Bug(俗称"八阿哥") 是软件开发绕不过的一道坎,因此调试便成了每位程序员一项必备的核心技能。调试不仅有助于理解程序的运行流程,还能改进代码质量,最终提高开发者解决问题的能力以及交付软件的品质。本文旨在讨论 Java 调试关键技…

python字符串转浮点数_Python | 打印不同的值(整数,浮点数,字符串,布尔值)...

python字符串转浮点数In the given example, we are printing different values like integer, float, string and Boolean using print() method in python. 在给定的示例中,我们使用python中的print()方法打印不同的值,例如整数,浮点数&…

(6) 如何用Apache POI操作Excel文件-----POI-3.10的一个和注解(comment)相关的另外一个bug...

如果POI-3.10往一个工作表(sheet)里面插入数据的话,需要注意了,其有一个不太被容易发现的bug。 被插入的工作表(sheet)里面的单元格没有包含任何的注解(comment)的时候,插…

mysql下拉刷新加载数据_下拉刷新、加载数据功能

paging nick加载更多getData();varm0,n2;//m:button点击次数 n:一次加载几条数据$(.page-btn-nick).click(getData);functiongetData(){$.ajax(paging.html).then(function(response){//测试url写本页面varobj{developer:[{name:nick},{name:ljy},{name:xzl},{name:jeson},{nam…

mcq 队列_人工智能逻辑才能问答(MCQ)

mcq 队列1) Why do we want to implement the concept of Logic in an AI system? So that the agent can have decision making capabilitySo that the agent can think and act humanlySo that the agent can apply the logic for finding the solution to any particular p…

第三周作业!

1、列出当前系统上所有已经登录的用户的用户名,注意:同一个用户登录多次,则只显示一次即可。答:本题思路:先用who命令列出当前登陆的用户信息,然后使用cut命令对字段进行分割,选出我们需要的字段…

python导入模块以及类_python模块的导入以及模块简介

标签: 一、模块的定义及类型 1、定义 模块就是用一堆的代码实现了一些功能的代码的集合,通常一个或者多个函数写在一个.py文件里,而如果有些功能实现起来很复杂,那么就需要创建n个.py文件,这n个.py文件的集合就是模块 …

mysql 指定数字排序_Mysql数据排序

排序数据普通字段排序按照单一字段排序按照多个字段排序手动指定排序顺序单个字段手动排序多个字段手动排序普通字段排序按照单一字段排序排序采用order by子句,order by后面跟上排序字段,排序字段可以放多个,多个采用逗号间隔,or…

《黃帝內經 —— 央視60集紀錄片》

下載地址: http://pan.baidu.com/s/1dFI8hxf 目錄 第一部 医史篇第1集:神奇的秘笈(《黄帝内经》是部什么书)第2集:赫赫始祖(上)(黄帝、炎帝)第3集:赫赫始祖&a…

mnist手写数字数据集_mnist手写数据集(1. 加载与可视化)

》》欢迎 点赞,留言,收藏加关注《《1. 模型构建的步骤:在构建AI模型时,一般有以下主要步骤:准备数据、数据预处理、划分数据集、配置模型、训练模型、评估优化、模型应用,如下图所示:【注意】由…

python凯撒密码实现_密码:凯撒密码及其Python实现

python凯撒密码实现Before we start let’s some basic terminology... 在开始之前,让我们先介绍一些基本术语... The art and science to achieve security by encoding messages to make them unreadable are known as Cryptography. That’s what the whole art…

qtextedit 默认文案_QT-纯代码控件-QSplitter(分裂器)

版权声明:本文为博主原创文章,遵循CC 4.0 by-sa版权协议,转载请附上原文出处链接和本声明。本文链接:https://blog.csdn.net/qq_41488943/article/details/96431379使用Qplitter实现页面的三布局分布1.新建一个无ui界面的工程&…

TYVJ P1030 乳草的入侵 Label:跳马问题

背景 USACO OCT09 6TH描述 Farmer John一直努力让他的草地充满鲜美多汁的而又健康的牧草。可惜天不从人愿&#xff0c;他在植物大战人类中败下阵来。邪恶的乳草已经在他的农场的西北部份佔领了一片立足之地。草地像往常一样&#xff0c;被分割成一个高度為Y(1 < y < 100)…

kotlin中既继承又实现_Kotlin程序| 解决继承中的主要冲突的示例

kotlin中既继承又实现继承中的主要冲突 (Overriding Conflicts in Inheritance) It may appear, we inherit more than one implementation of the same method. 看来&#xff0c;我们继承了同一方法的多个实现。 Need to implement all the methods which we have inherited f…

python雷达图详解_Python简单雷达图绘制

import numpy as np import matplotlib.pyplot as plt import matplotlib matplotlib.rcParams[font.family] SimHei matplotlib.rcParams[font.sans-serif] [SimHei] lables np.array([综合,KDA,发育,推进,生存,输出]) nAttr 6 date np.array([7, 5, 6, 9, 8, 7]) angles…