Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は HLA を使用していますが、この指示を理解していません:
shl( 5, ax )
この命令が何をしているのかについて詳しく知りたいです。
まあ、シフトは実際には乗算のようなものです
左に 1 回シフトしている場合は、2 倍しています。
つまり、次のことを意味します。
mov eax, 5 mov ebx, 2 mul ebx
以下と同じです:
mov eax, 5 shl eax, 1
とった?