summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/lynx.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/lynx.h')
-rw-r--r--src/mame/includes/lynx.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/mame/includes/lynx.h b/src/mame/includes/lynx.h
index 01d10bb5a1d..8d14e0d9dfa 100644
--- a/src/mame/includes/lynx.h
+++ b/src/mame/includes/lynx.h
@@ -171,13 +171,13 @@ private:
uint32_t screen_update(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect);
- DECLARE_READ8_MEMBER(suzy_read);
- DECLARE_WRITE8_MEMBER(suzy_write);
- DECLARE_WRITE8_MEMBER(lynx_uart_w);
- DECLARE_READ8_MEMBER(lynx_uart_r);
- DECLARE_READ8_MEMBER(mikey_read);
- DECLARE_WRITE8_MEMBER(mikey_write);
- DECLARE_READ8_MEMBER(lynx_memory_config_r);
+ uint8_t suzy_read(offs_t offset);
+ void suzy_write(offs_t offset, uint8_t data);
+ void lynx_uart_w(offs_t offset, uint8_t data);
+ uint8_t lynx_uart_r(offs_t offset);
+ uint8_t mikey_read(offs_t offset);
+ void mikey_write(offs_t offset, uint8_t data);
+ uint8_t lynx_memory_config_r();
void lynx_memory_config_w(uint8_t data);
void lynx_divide();
void lynx_multiply();