Improved compatibility with 1581 (especially when using 1581 JiffyDOS)

This commit is contained in:
Stephen White 2018-11-25 21:47:24 +11:00
parent 0bbe4544f9
commit db643e8d0e
1 changed files with 2 additions and 2 deletions

View File

@ -916,9 +916,10 @@ EXIT_TYPE Emulate1581(FileBrowser* fileBrowser)
}
pi1581.m6502.Step();
pi1581.Update();
IEC_Bus::RefreshOuts1581(); // Now output all outputs.
}
IEC_Bus::RefreshOuts1581(); // Now output all outputs.
//if (cycleCount >= FAST_BOOT_CYCLES) // cycleCount is used so we can quickly get through 1541's self test code. This will make the emulated 1541 responsive to commands asap. During this time we don't need to set outputs.
{
IEC_Bus::OutputLED = pi1581.IsLEDOn();
@ -945,7 +946,6 @@ EXIT_TYPE Emulate1581(FileBrowser* fileBrowser)
}
}
// Other core will check the uart (as it is slow) (could enable uart irqs - will they execute on this core?)
inputMappings->CheckKeyboardEmulationMode(numberOfImages, numberOfImagesMax);
inputMappings->CheckButtonsEmulationMode();