Merge branch 'master' of github.com:TASEmulators/fceux

This commit is contained in:
mjbudd77 2022-03-06 12:47:59 -05:00
commit bef4e80e08
1 changed files with 8 additions and 6 deletions

View File

@ -223,16 +223,18 @@ void FCEU_FDSSelect(void)
FCEU_DispMessage("Disk %d Side %c Selected", 0, SelectDisk >> 1, (SelectDisk & 1) ? 'B' : 'A'); FCEU_DispMessage("Disk %d Side %c Selected", 0, SelectDisk >> 1, (SelectDisk & 1) ? 'B' : 'A');
} }
#define IRQ_Repeat (IRQa & 0x01)
#define IRQ_Enabled (IRQa & 0x02)
static void FDSFix(int a) { static void FDSFix(int a) {
if ((IRQa & 2) && IRQCount) { if ((IRQa & IRQ_Enabled) && IRQCount) {
IRQCount -= a; IRQCount -= a;
if (IRQCount <= 0) { if (IRQCount <= 0) {
if (!(IRQa & 1)) { IRQCount = IRQLatch;
IRQa &= ~2;
IRQCount = IRQLatch = 0;
} else
IRQCount = IRQLatch;
X6502_IRQBegin(FCEU_IQEXT); X6502_IRQBegin(FCEU_IQEXT);
if (!(IRQa & IRQ_Repeat)) {
IRQa &= ~IRQ_Enabled;
}
} }
} }
if (DiskSeekIRQ > 0) { if (DiskSeekIRQ > 0) {