1补码 2补码_8085微处理器中8位数字的1和2的补码
1補碼 2補碼
1的8位補碼 (1's compliment of 8 bits number)
Problem statement:
問題陳述:
To perform 1'scompliment of 8 bits number using 8085 microprocessor.
使用8085微處理器執行1的8位數字補碼。
Algorithm:
算法:
Load the accumulator with the first data.
向累加器加載第一個數據。
Compliment the content of accumulator.
補充累加器的內容。
Now load the result value in memory location.
現在將結果值加載到內存位置。
Program:
程序:
LDA 2050 CMA STA 2052Observation:
觀察:
INPUT: 2050:05OUTPUT: 2052:FAHence, we successfully find the compliment of 8 bits number.
因此,我們成功地找到了8位數字的補充 。
2的8位補碼 (2's compliment of 8 bits number)
Problem statement:
問題陳述:
To perform 2'scompliment of 8 bit number using 8085 microprocessor.
使用8085微處理器執行8位數字的2的補碼。
Algorithm:
算法:
Load the accumulator with the first data
向累加器加載第一個數據
Compliment the content of accumulator
補充累加器的內容
ADD 01 to the content of accumulator
向累加器的內容添加01
Now load the result value in memory location
現在將結果值加載到內存位置
Program:
程序:
LDA 2050 CMA ADI 01STA 2052Observation:
觀察:
INPUT: 2050:05OUTPUT: 2052:FBHence, we successfully find the 2's compliment of 8 bits number
因此,我們成功找到8位數字的2的補碼
翻譯自: https://www.includehelp.com/embedded-system/1-s-and-2-s-compliment-of-8-bits-number-in-8085-microprocessor.aspx
1補碼 2補碼
總結
以上是生活随笔為你收集整理的1补码 2补码_8085微处理器中8位数字的1和2的补码的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 刹车分泵多少钱啊?
- 下一篇: C#| 使用String.Format(