如何打印出给定尺寸的方格
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:
算法:
Load input number address in SI and also load the address where we want output in DI .
在SI中加载输入数字地址,并在DI中加载我们要输出的地址。
Store 00 in CH register.
将00存储在CH寄存器中。
Increment value of CH by 1 and move the content of [SI] into AH register.
将CH的值递增1,然后将[SI]的内容移到AH寄存器中。
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。
Compare the value of CH and 0A, if not equal then go to step number 3 otherwise halt the program.
比较CH和0A的值,如果不相等,则转到第3步,否则暂停程序。
Program:
程序:
ADDRESS | MNEMONICS | COMMENTS |
400 | MOV SI, 500 | SI |
403 | MOV DI, 600 | DI |
406 | MOV CH, 00 | CH |
408 | INC CH | CH |
409 | MOV AL, [SI] | AL |
40B | MUL CH | AX |
40D | MOV [DI], AL | [DI] |
40F | INC DI | DI |
410 | CMP CH, 0A | CH-0A |
413 | JNZ 408 | jump to address 408 if zero flag is 0 |
415 | HLT | Terminates 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:
说明:
MOV SI, 500: load 500 in SI.
MOV SI,500:在SI中加载500。
MOV DI, 600: load 600 in DI.
MOV DI,600:在DI中加载600。
MOV CH, 00: load 00 data in CH register.
MOV CH,00:将00数据加载到CH寄存器中。
INC CH: increment the value inside CH register by 1.
INC CH:将CH寄存器中的值加1。
MOV AL, SI: move the content of SI into AL register.
MOV AL,SI:将SI的内容移到AL寄存器中。
MUL CH: multiply the contents of AL and CH register and store in AX register.
MUL CH:将AL和CH寄存器的内容相乘并存储在AX寄存器中。
MOV [DI], AL: move the contents of AL register into [DI].
MOV [DI],AL:将AL寄存器的内容移至[DI]。
INC DI: increment the value of DI by 1.
INC DI:将DI的值增加1。
CMP CH, 0A: subtract data inside CH register and 0A.
CMP CH,0A:将CH寄存器和0A内的数据相减。
JNZ 408: jump to address 408 if zero flag is 0.
JNZ 408:如果零标志为0,则跳转到地址408。
HLT: terminate the program.
HLT:终止程序。
翻译自: https://www.includehelp.com/embedded-system/print-the-table-of-a-given-number-using-8086-microprocessor.aspx
如何打印出给定尺寸的方格