summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2012-04-20 07:12:43 +0000
committer Miodrag Milanovic <mmicko@gmail.com>2012-04-20 07:12:43 +0000
commitc9deec8e1d37266120263dff49dffd8b606e7dd3 (patch)
treec4f31fabca56d89ed2cd05784c62bd0e6aad8081
parentb486b4d04030cfd2c4e863dc8cd96c612562d545 (diff)
fix for 16bit device callback from Judge (no whatsnew)
-rw-r--r--src/emu/devcb.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/emu/devcb.h b/src/emu/devcb.h
index 04f9d7938bd..5d377e86306 100644
--- a/src/emu/devcb.h
+++ b/src/emu/devcb.h
@@ -117,10 +117,10 @@ UINT8 devcb_stub(device_t *device, offs_t offset)
// static template for a read16 stub function that calls through a given READ16_MEMBER
template<class _Class, UINT16 (_Class::*_Function)(address_space &, offs_t, UINT16)>
-UINT16 devcb_stub16(device_t *device, offs_t offset)
+UINT16 devcb_stub(device_t *device, offs_t offset, UINT16 mask=0xffff)
{
_Class *target = downcast<_Class *>(device);
- return (target->*_Function)(*device->machine().memory().first_space(), offset, 0xffff);
+ return (target->*_Function)(*device->machine().memory().first_space(), offset, mask);
}
// static template for a write_line stub function that calls through a given WRITE_LINE_MEMBER
@@ -141,10 +141,10 @@ void devcb_stub(device_t *device, offs_t offset, UINT8 data)
// static template for a write16 stub function that calls through a given WRITE16_MEMBER
template<class _Class, void (_Class::*_Function)(address_space &, offs_t, UINT16, UINT16)>
-void devcb_stub16(device_t *device, offs_t offset, UINT16 data)
+void devcb_stub(device_t *device, offs_t offset, UINT16 data, UINT16 mask=0xffff)
{
_Class *target = downcast<_Class *>(device);
- (target->*_Function)(*device->machine().memory().first_space(), offset, data, 0xffff);
+ (target->*_Function)(*device->machine().memory().first_space(), offset, data, mask);
}
#define DEVCB_NULL { DEVCB_TYPE_NULL }