diff options
Diffstat (limited to 'src/devices/machine/mos6526.cpp')
-rw-r--r-- | src/devices/machine/mos6526.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/machine/mos6526.cpp b/src/devices/machine/mos6526.cpp index 74b86246812..6f992cb05cb 100644 --- a/src/devices/machine/mos6526.cpp +++ b/src/devices/machine/mos6526.cpp @@ -801,7 +801,7 @@ void mos6526_device::execute_run() READ8_MEMBER( mos6526_device::read ) { - if (space.debugger_access()) + if (machine().debugger_access()) return 0xff; uint8_t data = 0; |