diff options
author | 2012-09-17 09:16:44 +0000 | |
---|---|---|
committer | 2012-09-17 09:16:44 +0000 | |
commit | 0dc663e2e920bad3c4c1247dfb83c66a7b06d354 (patch) | |
tree | 9364ca67c09e77b54cd7aec72c8040c441fc3a43 /src/mess/machine/lynx.c | |
parent | 3cce7e019e095296b5ce2bb45d19b1209bed961d (diff) |
Memory handler cleanup 3. Add mem_mask parameter
to 8-bit handlers to match the others. To ease
pain, added DECLARE_READ/WRITE_HANDLER macros that
set up a default parameter. Also updated devcb so
that the handlers can be called with or without the
mem_mask. [Aaron Giles]
Diffstat (limited to 'src/mess/machine/lynx.c')
-rw-r--r-- | src/mess/machine/lynx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mess/machine/lynx.c b/src/mess/machine/lynx.c index 9e5b26590b7..3d34e596549 100644 --- a/src/mess/machine/lynx.c +++ b/src/mess/machine/lynx.c @@ -1769,7 +1769,7 @@ READ8_MEMBER(lynx_state::mikey_read) case 0x8c: case 0x8d: - value = lynx_uart_r(space, offset); + value = lynx_uart_r(space, offset, mem_mask); break; default: |