No io contention in +3 machine

This commit is contained in:
fabio.olimpieri 2012-07-29 20:13:08 +00:00
parent 0d78ac8917
commit 9a6a0bb4d6

View File

@ -1678,7 +1678,7 @@ void Z80free_Out (register word Port, register byte Value) {
break; break;
} }
} }
else if ((Port&0x0001)==0) do_contention(); else if (((Port&0x0001)==0)&&(ordenador.mode128k!=3)) do_contention();
// ULAPlus // ULAPlus
@ -1822,7 +1822,7 @@ byte Z80free_In (register word Port) {
break; break;
} }
} }
else if ((Port&0x0001)==0) do_contention(); else if (((Port&0x0001)==0)&&(ordenador.mode128k!=3)) do_contention();
temporal_io = (unsigned int) Port; temporal_io = (unsigned int) Port;