From: qufb Date: Sat, 3 Sep 2022 20:50:47 +0000 (+0100) Subject: Fix test page input for Keyboard Pico games X-Git-Tag: v2.04~88 X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fa968c5e140cbb0a626d23b4d7407448828789a9;p=picodrive.git Fix test page input for Keyboard Pico games --- diff --git a/pico/pico/memory.c b/pico/pico/memory.c index 2f63de39..e49f27dc 100644 --- a/pico/pico/memory.c +++ b/pico/pico/memory.c @@ -57,12 +57,10 @@ static u32 PicoRead16_pico(u32 a) case 0x08: d = (PicoPicohw.pen_pos[1] >> 8); break; case 0x0a: d = PicoPicohw.pen_pos[1] & 0xff; break; case 0x0c: d = (1 << (PicoPicohw.page & 7)) - 1; - if (PicoPicohw.is_kb_active) { - // Apply 1 of 2 bitmasks, depending on which one preserves the highest set bit. - if (PicoPicohw.page % 2 == 0) - d &= 0x2a; // 0b00101010 - else - d &= 0x15; // 0b00010101 + if (PicoPicohw.page == 7) { + d = 0x2a; // 0b00101010 + } else { + d = ((1 << (PicoPicohw.page & 7)) - 1); } break; case 0x10: d = (PicoPicohw.fifo_bytes > 0x3f) ? 0 : (0x3f - PicoPicohw.fifo_bytes); break; diff --git a/platform/common/emu.c b/platform/common/emu.c index 9ca71a20..510fb172 100644 --- a/platform/common/emu.c +++ b/platform/common/emu.c @@ -1127,9 +1127,15 @@ void run_events_pico(unsigned int events) } if (events & PEV_PICO_PNEXT) { PicoPicohw.page++; - if (PicoPicohw.page > 6) - PicoPicohw.page = 6; - emu_status_msg("Page %i", PicoPicohw.page); + if (PicoPicohw.page > 7) + PicoPicohw.page = 7; + if (PicoPicohw.page == 7) { + // Used in games that require the Keyboard Pico peripheral + emu_status_msg("Test Page"); + } + else { + emu_status_msg("Page %i", PicoPicohw.page); + } } if (events & PEV_PICO_STORY) { if (pico_inp_mode == 1) { diff --git a/platform/libretro/libretro.c b/platform/libretro/libretro.c index ca804aa8..6abcd9cf 100644 --- a/platform/libretro/libretro.c +++ b/platform/libretro/libretro.c @@ -2251,9 +2251,15 @@ void run_events_pico(unsigned int events) } if (events & (1 << RETRO_DEVICE_ID_JOYPAD_R)) { PicoPicohw.page++; - if (PicoPicohw.page > 6) - PicoPicohw.page = 6; - emu_status_msg("Page %i", PicoPicohw.page); + if (PicoPicohw.page > 7) + PicoPicohw.page = 7; + if (PicoPicohw.page == 7) { + // Used in games that require the Keyboard Pico peripheral + emu_status_msg("Test Page"); + } + else { + emu_status_msg("Page %i", PicoPicohw.page); + } } if (events & (1 << RETRO_DEVICE_ID_JOYPAD_X)) { if (pico_inp_mode == 2) {