java 位运算两数字相加_8085微处理器中的两个8位数字相加

java 位运算两数字相加

Problem statement:

问题陈述:

To perform addition of two 8 bits numbers without carries using 8085 microprocessor.

使用8085微处理器在不带进位的情况下执行两个8位数字的加法运算。

Algorithm:

算法:

  1. Load the accumulator with the first data.

    向累加器加载第一个数据。

  2. Move data of accumulator to register B.

    将累加器的数据移至寄存器B。

  3. Load the second data into the accumulator.

    将第二个数据加载到累加器中。

  4. Add the content of register B with the content of accumulator.

    将寄存器B的内容与累加器的内容相加。

  5. 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位数字

翻译自: https://www.includehelp.com/embedded-system/addition-of-two-8-bits-numbers-in-8085-microprocessor.aspx

java 位运算两数字相加

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值