mirror of
https://github.com/xenia-project/xenia.git
synced 2025-12-06 07:12:03 +01:00
[a64] Fix 32-bit store
You wouldn't believe how much time this bug costed me
This commit is contained in:
parent
2d093ae4ba
commit
fd32c0e959
|
|
@ -717,9 +717,9 @@ struct STORE_OFFSET_I32
|
||||||
} else {
|
} else {
|
||||||
if (i.src3.is_constant) {
|
if (i.src3.is_constant) {
|
||||||
e.MOV(W0, i.src3.constant());
|
e.MOV(W0, i.src3.constant());
|
||||||
e.STRH(W0, addr_reg);
|
e.STR(W0, addr_reg);
|
||||||
} else {
|
} else {
|
||||||
e.STRH(i.src3, addr_reg);
|
e.STR(i.src3, addr_reg);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue