summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/machine/coco12.c
diff options
context:
space:
mode:
author R. Belmont <rb6502@users.noreply.github.com>2015-08-17 09:37:30 -0400
committer R. Belmont <rb6502@users.noreply.github.com>2015-08-17 09:37:30 -0400
commit6a870588f2141f70449ad2bc6e23024e8b108fd8 (patch)
treef66b6d1659a676357348093340468ce58bfe08c3 /src/mess/machine/coco12.c
parent45854fab0108829ee7b1964532207af2f5b2dac8 (diff)
parent039973b6d8e326b844693ffe0abb3053e6768e1d (diff)
Merge pull request #280 from richard42/trs80-coco-audio-fixes
Trs80 coco audio fixes
Diffstat (limited to 'src/mess/machine/coco12.c')
-rw-r--r--src/mess/machine/coco12.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/mess/machine/coco12.c b/src/mess/machine/coco12.c
index c9a0a9a2afb..e2f3fbdb521 100644
--- a/src/mess/machine/coco12.c
+++ b/src/mess/machine/coco12.c
@@ -94,12 +94,11 @@ READ8_MEMBER( coco12_state::sam_read )
// pia1_pb_changed
//-------------------------------------------------
-void coco12_state::pia1_pb_changed(void)
+void coco12_state::pia1_pb_changed(UINT8 data)
{
/* call inherited function */
- coco_state::pia1_pb_changed();
+ coco_state::pia1_pb_changed(data);
- UINT8 data = m_pia_1->b_output();
m_vdg->css_w(data & 0x08);
m_vdg->intext_w(data & 0x10);
m_vdg->gm0_w(data & 0x10);