summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/apple3.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/apple3.h')
-rw-r--r--src/mame/includes/apple3.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/mame/includes/apple3.h b/src/mame/includes/apple3.h
index ef32b981503..58b86f1ee3b 100644
--- a/src/mame/includes/apple3.h
+++ b/src/mame/includes/apple3.h
@@ -88,21 +88,21 @@ public:
required_device<floppy_connector> floppy2;
required_device<floppy_connector> floppy3;
- DECLARE_READ8_MEMBER(apple3_memory_r);
- DECLARE_WRITE8_MEMBER(apple3_memory_w);
+ uint8_t apple3_memory_r(offs_t offset);
+ void apple3_memory_w(offs_t offset, uint8_t data);
DECLARE_WRITE_LINE_MEMBER(apple3_sync_w);
- DECLARE_READ8_MEMBER(apple3_c0xx_r);
- DECLARE_WRITE8_MEMBER(apple3_c0xx_w);
+ uint8_t apple3_c0xx_r(offs_t offset);
+ void apple3_c0xx_w(offs_t offset, uint8_t data);
void init_apple3();
virtual void machine_reset() override;
virtual void video_start() override;
uint32_t screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
TIMER_CALLBACK_MEMBER(scanstart_cb);
TIMER_CALLBACK_MEMBER(scanend_cb);
- DECLARE_WRITE8_MEMBER(apple3_via_0_out_a);
- DECLARE_WRITE8_MEMBER(apple3_via_0_out_b);
- DECLARE_WRITE8_MEMBER(apple3_via_1_out_a);
- DECLARE_WRITE8_MEMBER(apple3_via_1_out_b);
+ void apple3_via_0_out_a(uint8_t data);
+ void apple3_via_0_out_b(uint8_t data);
+ void apple3_via_1_out_a(uint8_t data);
+ void apple3_via_1_out_b(uint8_t data);
void apple3_write_charmem();
void text40(bitmap_ind16 &bitmap, const rectangle &cliprect);
void text80(bitmap_ind16 &bitmap, const rectangle &cliprect);