summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/includes/apple3.h
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2012-10-03 09:27:22 +0000
committer Miodrag Milanovic <mmicko@gmail.com>2012-10-03 09:27:22 +0000
commite52d60b7f8ce03e5c1f8c801fd5caa234b3aa3cf (patch)
treebe8ce4af035c60e33f580cf3a983cc3c9b684c75 /src/mess/includes/apple3.h
parent92b1c4eebd358d5138fc51662daead09f4a4c72e (diff)
Replace some *_DEVICE_HANDLER with _MEMBER calls in MESS section (no whatsnew)
Diffstat (limited to 'src/mess/includes/apple3.h')
-rw-r--r--src/mess/includes/apple3.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/mess/includes/apple3.h b/src/mess/includes/apple3.h
index a0ebefd4272..e0e111b55c1 100644
--- a/src/mess/includes/apple3.h
+++ b/src/mess/includes/apple3.h
@@ -61,6 +61,12 @@ public:
DECLARE_VIDEO_START(apple3);
UINT32 screen_update_apple3(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
INTERRUPT_GEN_MEMBER(apple3_interrupt);
+ DECLARE_READ8_MEMBER(apple3_via_1_in_a);
+ DECLARE_READ8_MEMBER(apple3_via_1_in_b);
+ 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);
};