diff options
author | 2012-12-16 03:35:50 +0000 | |
---|---|---|
committer | 2012-12-16 03:35:50 +0000 | |
commit | dac144a74b8e6d9ac6416e0a735388da70bb19b8 (patch) | |
tree | 57e7da10949e4dac336f1deba0ef66cc76486491 /src/mess/machine/mackbd.h | |
parent | fb31a90efbc1d7d3e22421e539b8659e90316810 (diff) |
(MESS) mackbd: dumped correct ROM, prep for actual emulation [Lord Nightmare, R. Belmont]
Diffstat (limited to 'src/mess/machine/mackbd.h')
-rw-r--r-- | src/mess/machine/mackbd.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/mess/machine/mackbd.h b/src/mess/machine/mackbd.h index 1e7ef3300c9..b4dcee9622d 100644 --- a/src/mess/machine/mackbd.h +++ b/src/mess/machine/mackbd.h @@ -38,6 +38,14 @@ public: // construction/destruction mackbd_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); + DECLARE_READ8_MEMBER(p0_r); + DECLARE_WRITE8_MEMBER(p0_w); + DECLARE_READ8_MEMBER(p1_r); + DECLARE_WRITE8_MEMBER(p1_w); + DECLARE_READ8_MEMBER(p2_r); + DECLARE_WRITE8_MEMBER(p2_w); + DECLARE_READ8_MEMBER(t1_r); + protected: // device-level overrides virtual void device_start(); |