mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-26 23:52:26 +00:00
Corrects port for ZON-X reads.
This commit is contained in:
parent
35e84ff1a8
commit
0833412df9
@ -157,7 +157,7 @@ template<bool is_zx81> class ConcreteMachine:
|
|||||||
|
|
||||||
// The below emulates the ZonX AY expansion device.
|
// The below emulates the ZonX AY expansion device.
|
||||||
if(is_zx81) {
|
if(is_zx81) {
|
||||||
if((address&0xef) == 0x0f) {
|
if((address&0xef) == 0xcf) {
|
||||||
value &= ay_read_data();
|
value &= ay_read_data();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user