From e402746423a22f7dc7174d8992902508c87d58cf Mon Sep 17 00:00:00 2001 From: michaelangel007 Date: Mon, 24 Apr 2023 21:33:25 -0700 Subject: [PATCH] Debugger: Update DISK INFO to show last nibble for non WOZ floppy image --- source/Disk.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/source/Disk.cpp b/source/Disk.cpp index 938eb9d5..df9bf0d3 100644 --- a/source/Disk.cpp +++ b/source/Disk.cpp @@ -1149,6 +1149,9 @@ void __stdcall Disk2InterfaceCard::ReadWrite(WORD pc, WORD addr, BYTE bWrite, BY #endif } + // GH #1212 We have a non .WOZ disk, mirror so that GetCurrentShiftReg() returns last nibble read + m_shiftReg = m_floppyLatch; + if (++pFloppy->m_byte >= pFloppy->m_nibbles) pFloppy->m_byte = 0;