core, fix Pico hardware region code
authorkub <derkub@gmail.com>
Sat, 20 Jan 2024 16:29:22 +0000 (17:29 +0100)
committerkub <derkub@gmail.com>
Sat, 20 Jan 2024 16:29:22 +0000 (17:29 +0100)
pico/pico/pico.c

index 077b9b2..1266ce8 100644 (file)
@@ -95,9 +95,9 @@ PICO_INTERNAL void PicoInitPico(void)
   // map version register
   PicoDetectRegion();
   switch (Pico.m.hardware >> 6) {
-    case 0: PicoPicohw.r1 = 0x00; break;
+    case 0: PicoPicohw.r1 = 0x40; break;
     case 1: PicoPicohw.r1 = 0x00; break;
-    case 2: PicoPicohw.r1 = 0x40; break;
+    case 2: PicoPicohw.r1 = 0x60; break;
     case 3: PicoPicohw.r1 = 0x20; break;
   }
 }