Skip to content

Commit

Permalink
Fix control register number
Browse files Browse the repository at this point in the history
  • Loading branch information
kanjitalk755 committed Oct 8, 2023
1 parent 9a7751f commit 2533f7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion BasiliskII/src/uae_cpu/newcpu.cpp
Expand Up @@ -831,7 +831,7 @@ static int movec_illg (int regno)
case 3:
if ((regno & 0x7ff) <= 2)
return 0;
if (regno == 3 || regno == 4)
if (regno == 0x803 || regno == 0x804)
return 0;
break;
case 4:
Expand Down

0 comments on commit 2533f7a

Please sign in to comment.