summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/includes/dragon.h
diff options
context:
space:
mode:
author Richard Goedeken <Richard@fascinationsoftware.com>2015-08-04 22:29:04 -0700
committer Richard Goedeken <Richard@fascinationsoftware.com>2015-08-04 22:29:04 -0700
commit43978837c51ed41ecdcaaf0deeaca3a6382c5875 (patch)
treeda14956b1e524be0ba408432609058eafba4ee4a /src/mess/includes/dragon.h
parente804e4c4ef6693d16318fc4aee02096ac113b699 (diff)
simplification: in the coco/dragon virtual functions which get called from coco.c when the PIA port A/B output status changes, send the new 8-bit output signals directly as a function parameter rather than forcing the handlers to call back into the PIA objects to get the new values
Diffstat (limited to 'src/mess/includes/dragon.h')
-rw-r--r--src/mess/includes/dragon.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mess/includes/dragon.h b/src/mess/includes/dragon.h
index 6db0d5f86a2..7006d37e68d 100644
--- a/src/mess/includes/dragon.h
+++ b/src/mess/includes/dragon.h
@@ -45,7 +45,7 @@ public:
required_device<printer_image_device> m_printer;
protected:
- virtual void pia1_pa_changed(void);
+ virtual void pia1_pa_changed(UINT8 data);
};
@@ -65,7 +65,7 @@ protected:
virtual DECLARE_READ8_MEMBER( ff00_read );
virtual DECLARE_WRITE8_MEMBER( ff00_write );
- virtual void pia1_pb_changed(void);
+ virtual void pia1_pb_changed(UINT8 data);
void page_rom(bool romswitch);
};