sql 数字减去null
Problem: Write a program to subtract two 16-bit numbers where starting address is 2000 and the numbers are at 3000 and 3002 memory address and store result into 3004 and 3006 memory address.
问题:编写一个程序以减去两个16位数字(起始地址为2000,数字分别位于3000和3002存储器地址)并将结果存储到3004和3006存储器地址中。
Algorithm:
算法:
Load 0000H into CX register (for borrow)
将0000H加载到CX寄存器中(借用)
Load the data into AX(accumulator) from memory 3000
从内存3000将数据加载到AX(累加器)
Load the data into BX register from memory 3002
从存储器3002将数据加载到BX寄存器中
Subtract BX with Accumulator AX
用累加器AX减去BX
Jump if no borrow
如果没有借钱就跳
Increment CX by 1
CX递增1
Move data from AX(accumulator) to memory 3004
将数据从AX(累加器)移动到内存3004
Move data from CX register to memory 3006
将数据从CX寄存器移至内存3006
Stop
停止
Program:
程序:
ADDRESS | MNEMONICS | OPERANDS | COMMENTS |
---|---|---|---|
2000 | MOV | CX, 0000 | [CX] |
2003 | MOV | AX, [3000] | [AX] |
2007 | MOV | BX, [3002] | [BX] |
200B | SUB | AX, BX | [AX] |
200D | JNC | 2010 | Jump if no borrow |
200F | INC | CX | [CX] |
2010 | MOV | [3004], AX | [3004] |
2014 | MOV | [3006], CX | [3006] |
2018 | HLT | Stop |
地址 | 记忆 | 经营者 | 注释 |
---|---|---|---|
2000 | 影片 | CX,0000 | [CX] |
2003年 | 影片 | AX,[3000] | [斧头] |
2007年 | 影片 | BX,[3002] | [BX] |
200B | 潜艇 | AX,BX | [斧头] |
200D | 联合会 | 2010 | 如果没有借钱就跳 |
200楼 | INC | CX | [CX] |
2010 | 影片 | [3004],AX | [3004] |
2014年 | 影片 | [3006],CX | [3006] |
2018年 | HLT | 停止 |
Explanation:
说明:
MOV is used to load and store data.
MOV用于加载和存储数据。
SUB is used to subtract two numbers where their one number is in accumulator or not.
SUB用于减去两个数字,其中一个数字是否在累加器中。
JNC is a 2-bit command which is used to check whether the borrow is generated from accumulator or not.
JNC是2位命令,用于检查借位是否从累加器生成。
INC is used to increment an register by 1.
INC用于将寄存器增加1。
HLT is used to stop the program.
HLT用于停止程序。
AX is an accumulator which is used to load and store the data.
AX是一个累加器,用于加载和存储数据。
BX, CX is general purpose registers where BX is used for storing second number and CX is used to store borrow.
BX,CX是通用寄存器,其中BX用于存储第二个数字,而CX用于存储借位。
翻译自: https://www.includehelp.com/embedded-system/subtract-two-16-bits-numbers.aspx
sql 数字减去null