java 位运算两数字相加
Problem statement:
问题陈述:
To perform addition of two 8 bits numbers without carries using 8085 microprocessor.
使用8085微处理器在不带进位的情况下执行两个8位数字的加法运算。
Algorithm:
算法:
Load the accumulator with the first data.
向累加器加载第一个数据。
Move data of accumulator to register B.
将累加器的数据移至寄存器B。
Load the second data into the accumulator.
将第二个数据加载到累加器中。
Add the content of register B with the content of accumulator.
将寄存器B的内容与累加器的内容相加。
Now load the result value in a memory location.
现在将结果值加载到内存位置。
Program:
程序:
LDA 2050
MOV B,A
LDA 2051
ADD B
STA 2052
Observation:
观察:
INPUT:
2050:04
2051:02
OUTPUT:
2052:06
Hence we successfully added two 8 bits numbers.
因此,我们成功地添加了两个8位数字 。
java 位运算两数字相加