如何用x86汇编进行进制与位运算
具体过程:
一 用visual studio2022新建一个x86汇编项目
二 使用and指令进行与运算
and.asm
1 | ;and.asm |
三 使用or指令进行或运算
or.asm
1 | ;or.asm |
四 使用xor指令进行异或运算
xor.asm
1 | ;xor.asm |
All articles in this blog are licensed under CC BY-NC-SA 4.0 unless stating additionally.
and.asm
1 | ;and.asm |
or.asm
1 | ;or.asm |
xor.asm
1 | ;xor.asm |