diff options
Diffstat (limited to 'src/devices/cpu/psx/psx.cpp')
-rw-r--r-- | src/devices/cpu/psx/psx.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/psx/psx.cpp b/src/devices/cpu/psx/psx.cpp index 9db209dc393..f69e2bf8d00 100644 --- a/src/devices/cpu/psx/psx.cpp +++ b/src/devices/cpu/psx/psx.cpp @@ -194,14 +194,14 @@ static const uint32_t mtc0_writemask[]= READ32_MEMBER( psxcpu_device::berr_r ) { - if( !machine().debugger_access() ) + if( !space.debugger_access() ) m_berr = 1; return 0; } WRITE32_MEMBER( psxcpu_device::berr_w ) { - if( !machine().debugger_access() ) + if( !space.debugger_access() ) m_berr = 1; } |