Bugfix disk6_ioWrite

This commit is contained in:
Aaron Culliney 2018-10-12 05:38:27 -07:00
parent 50d440df1b
commit d443f01af3

View File

@ -717,7 +717,7 @@ GLUE_C_READ(disk6_ioRead)
GLUE_C_WRITE(disk6_ioWrite)
{
uint8_t sw = ea & 0xf;
if (sw < 0x7) { // C0E0 - C0E7
if (sw <= 0x7) { // C0E0 - C0E7
_disk6_phaseChange(ea);
} else {
switch (sw) {