From 2533f7ac05912bbde159b61083715c293e3b1f41 Mon Sep 17 00:00:00 2001 From: kanjitalk755 Date: Sun, 8 Oct 2023 19:42:42 +0900 Subject: [PATCH] Fix control register number --- BasiliskII/src/uae_cpu/newcpu.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BasiliskII/src/uae_cpu/newcpu.cpp b/BasiliskII/src/uae_cpu/newcpu.cpp index ee13d1db9..d24b7ba1f 100644 --- a/BasiliskII/src/uae_cpu/newcpu.cpp +++ b/BasiliskII/src/uae_cpu/newcpu.cpp @@ -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: