汇编中的SHL(左移)、SHR(右移)命令也是和 Delphi 一样的.var
//右移 shr
ByteNum: Byte;
begin asm
//左移 shl
mov al, 10000000B {128}
shr al, 1 {shr 10000000 一次会得到 01000000}
mov ByteNum, al
end;
ShowMessage(IntToStr(ByteNum)); {64; shr 相当于 ÷2} asm
mov al, 00000001B {1}
shl al, 1 {shl 一次会得到 00000010}
shl al, 1 {shl 两次会得到 00000100}
mov ByteNum, al
end;
ShowMessage(IntToStr(ByteNum)); {4; shl 相当于 ×2}
end;
时间: 2024-12-11 14:49:38