summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/ut88.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/ut88.h')
-rw-r--r--src/mame/includes/ut88.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mame/includes/ut88.h b/src/mame/includes/ut88.h
index ad1b571680d..d2eb44e27c2 100644
--- a/src/mame/includes/ut88.h
+++ b/src/mame/includes/ut88.h
@@ -31,7 +31,7 @@ public:
}
protected:
- DECLARE_READ8_MEMBER(tape_r);
+ uint8_t tape_r();
required_device<cassette_image_device> m_cassette;
required_memory_region m_region_maincpu;
@@ -73,9 +73,9 @@ private:
TIMER_UPDATE_DISPLAY
};
- DECLARE_READ8_MEMBER(keyboard_r);
- DECLARE_WRITE8_MEMBER(keyboard_w);
- DECLARE_WRITE8_MEMBER(sound_w);
+ uint8_t keyboard_r(offs_t offset);
+ void keyboard_w(offs_t offset, uint8_t data);
+ void sound_w(uint8_t data);
uint8_t ppi_portb_r();
uint8_t ppi_portc_r();
void ppi_porta_w(uint8_t data);
@@ -126,8 +126,8 @@ private:
TIMER_UPDATE_DISPLAY
};
- DECLARE_READ8_MEMBER(keyboard_r);
- DECLARE_WRITE8_MEMBER(led_w);
+ uint8_t keyboard_r();
+ void led_w(offs_t offset, uint8_t data);
required_memory_region m_region_proms;