AArch32: (Thumb32) fixed mov & add to pc

* BranchWritePC in thumb mode now clears bit-0
This commit is contained in:
Sleigh-InSPECtor 2024-05-20 15:10:33 +09:30
parent cae9190c13
commit f28ce101f1

View File

@ -205,7 +205,7 @@ macro SetThumbMode(value) {
#
# simple branch, not inter-working
macro BranchWritePC(addr) {
pc = addr;
pc = addr & (~0x1);
}
#