summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/turrett.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/turrett.h')
-rw-r--r--src/mame/includes/turrett.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/mame/includes/turrett.h b/src/mame/includes/turrett.h
index 62df61202eb..c77c26f70c7 100644
--- a/src/mame/includes/turrett.h
+++ b/src/mame/includes/turrett.h
@@ -50,11 +50,11 @@ private:
required_device<screen_device> m_screen;
// handlers
- DECLARE_WRITE32_MEMBER(dma_w);
- DECLARE_READ32_MEMBER(video_r);
- DECLARE_WRITE32_MEMBER(video_w);
- DECLARE_READ32_MEMBER(int_r);
- DECLARE_WRITE32_MEMBER(int_w);
+ void dma_w(offs_t offset, uint32_t data);
+ uint32_t video_r(offs_t offset, uint32_t mem_mask = ~0);
+ void video_w(offs_t offset, uint32_t data, uint32_t mem_mask = ~0);
+ uint32_t int_r();
+ void int_w(uint32_t data);
DECLARE_READ_LINE_MEMBER(sbrc2_r);
DECLARE_READ_LINE_MEMBER(sbrc3_r);
@@ -112,8 +112,8 @@ public:
// construction/destruction
turrett_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
- DECLARE_READ32_MEMBER(read);
- DECLARE_WRITE32_MEMBER(write);
+ uint32_t read(offs_t offset);
+ void write(offs_t offset, uint32_t data);
protected:
// device-level overrides