mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-05 15:27:46 -04:00
fame: fix roxr
also take interrupts on exit, like other cores do
This commit is contained in:
parent
0e4bde9b2d
commit
c041308933
2 changed files with 2 additions and 2 deletions
|
@ -38009,7 +38009,7 @@ OPCODE(0xE0B0)
|
|||
{
|
||||
if (sft == 1) res = (src >> 1) | ((flag_X & M68K_SR_X) << (32 - (M68K_SR_X_SFT + 1)));
|
||||
else res = (src >> sft) | (src << (33 - sft)) | (((flag_X & M68K_SR_X) << (32 - (M68K_SR_X_SFT + 1))) >> (sft - 1));
|
||||
flag_X = (src >> (32 - sft)) << M68K_SR_X_SFT;
|
||||
flag_X = (src >> (sft - 1)) << M68K_SR_X_SFT;
|
||||
}
|
||||
else res = src;
|
||||
flag_C = flag_X;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue