diff options
Diffstat (limited to 'src/devices/bus/isa/ega.cpp')
-rw-r--r-- | src/devices/bus/isa/ega.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/bus/isa/ega.cpp b/src/devices/bus/isa/ega.cpp index 5e88c01d6af..e782c18573b 100644 --- a/src/devices/bus/isa/ega.cpp +++ b/src/devices/bus/isa/ega.cpp @@ -963,7 +963,7 @@ READ8_MEMBER( isa8_ega_device::read ) { uint8_t data = 0xFF; - if ( !machine().debugger_access() && ! ( m_sequencer.data[4] & 0x04 ) ) + if ( !space.debugger_access() && ! ( m_sequencer.data[4] & 0x04 ) ) { /* Fill read latches */ m_read_latch[0] = m_plane[0][offset & 0xffff]; |