summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/xavix_math.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/xavix_math.h')
-rw-r--r--src/mame/machine/xavix_math.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mame/machine/xavix_math.h b/src/mame/machine/xavix_math.h
index d0bdeb6bf1f..0ca20d8e156 100644
--- a/src/mame/machine/xavix_math.h
+++ b/src/mame/machine/xavix_math.h
@@ -9,13 +9,13 @@ class xavix_math_device : public device_t
public:
xavix_math_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
- DECLARE_READ8_MEMBER(mult_r);
- DECLARE_WRITE8_MEMBER(mult_w);
- DECLARE_READ8_MEMBER(mult_param_r);
- DECLARE_WRITE8_MEMBER(mult_param_w);
+ uint8_t mult_r(offs_t offset);
+ void mult_w(offs_t offset, uint8_t data);
+ uint8_t mult_param_r(offs_t offset);
+ void mult_param_w(offs_t offset, uint8_t data, uint8_t mem_mask = ~0);
- DECLARE_READ8_MEMBER(barrel_r);
- DECLARE_WRITE8_MEMBER(barrel_w);
+ uint8_t barrel_r(offs_t offset);
+ void barrel_w(offs_t offset, uint8_t data);
protected:
// device-level overrides