16位的数字高字节和低字节_显示掩盖较低和较高的16位数字半字节| 8086微处理器...
16位的數字高字節和低字節
Problem: To show masking of lower and higher nibbles of 16bit number using 8086 Microprocessor.
問題:使用8086微處理器顯示對16位數字的較高半字節和較低半字節的屏蔽。
Assumption:
假設:
Number is stored at memory location 0600.
編號存儲在內存位置0600。
Result will be stored at memory location 0602 and 0603.
結果將存儲在存儲器位置0602和0603中。
Algorithm:
算法:
Load first number to the register AX.
將第一個數字加載到寄存器AX。
Now move the content of register AL to memory location [0602].
現在將寄存器AL的內容移動到存儲器位置[0602]。
Now move the content of register AH to memory location [0603].
現在將寄存器AH的內容移動到存儲器位置[0603]。
Terminate the program.
終止程序。
Program:
程序:
MOV AX, [0600]MOV [0601], ALMOV [0602], AHHLTObservation:
觀察:
INPUT:0600: 1112OUTPUT:0602:00120603:0011Hence, we successfully masked the higher and lower nibble of a 16 bit number using 8086 Microprocessor.
因此,我們使用8086微處理器成功掩蓋了16位數字的高半字節和低半字節 。
翻譯自: https://www.includehelp.com/embedded-system/show-masking-of-lower-and-higher-nibbles-of-16-bit-number.aspx
16位的數字高字節和低字節
總結
以上是生活随笔為你收集整理的16位的数字高字节和低字节_显示掩盖较低和较高的16位数字半字节| 8086微处理器...的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: java bitset_Java Bit
- 下一篇: golang的new函数_new()和m