diff options
author | 2014-05-23 23:26:10 +0000 | |
---|---|---|
committer | 2014-05-23 23:26:10 +0000 | |
commit | bed9b1c1b11736bafa486fb378f6d791995dd61e (patch) | |
tree | e02e08016e3d1f7df526f3d763bb32d99d3f7025 /src/emu/machine/mos6526.c | |
parent | 52dcb22148d7a332e1ac0fff395857f8decb3de6 (diff) |
Amiga: Add support for the Commodore A2232 Serial Card.
Diffstat (limited to 'src/emu/machine/mos6526.c')
-rw-r--r-- | src/emu/machine/mos6526.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/emu/machine/mos6526.c b/src/emu/machine/mos6526.c index 94f1c667bfa..85e3e40a652 100644 --- a/src/emu/machine/mos6526.c +++ b/src/emu/machine/mos6526.c @@ -798,6 +798,9 @@ void mos6526_device::execute_run() READ8_MEMBER( mos6526_device::read ) { + if (space.debugger_access()) + return 0xff; + UINT8 data = 0; switch (offset & 0x0f) |