c语言交换两个数字 位运算
Problem statement:
问题陈述:
To swap two 8 bits numbers using third register on 8086 microprocessor.
使用8086微处理器上的第三个寄存器交换两个8位数字。
Algorithm:
算法:
Load first number in register AL through memory.
通过存储器将第一个数字加载到寄存器AL中。
Move the content of register AL in register BL.
将寄存器AL的内容移到寄存器BL中。
Load the second number in register AL through memory.
通过存储器将第二个数字加载到寄存器AL中。
Store the content of register AL at the memory location of first number.
将寄存器AL的内容存储在第一个数字的存储位置。
Store the content of register AL at the memory location of second number.
将寄存器AL的内容存储在第二个数字的存储位置。
Terminate the program
终止程序
Program:
程序:
MOV AL, [0600]
MOV BL, AL
MOV AL, [0601]
MOV [0600], AL
MOV [0601], BL
HLT
Observation:
观察:
INPUT:
0600:05
0601:04
OUTPUT:
0600:04
0601:05
Hence we successfully swapped 2 8 bits using third register on 8086 microprocessor.
因此,我们使用8086微处理器上的第三个寄存器成功地交换了2个8位 。
翻译自: https://www.includehelp.com/embedded-system/swap-two-8-bits-numbers.aspx
c语言交换两个数字 位运算