summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/machine/6821pia.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/machine/6821pia.c')
-rw-r--r--src/emu/machine/6821pia.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/machine/6821pia.c b/src/emu/machine/6821pia.c
index f50c3fbbf97..f4e764b65ec 100644
--- a/src/emu/machine/6821pia.c
+++ b/src/emu/machine/6821pia.c
@@ -982,7 +982,7 @@ int pia_get_output_ca2(int which)
}
// Version of pia_get_output_ca2, which takes account of internal
-// pullup resistor
+// pullup resistor
int pia_get_output_ca2_z(int which)
{
pia6821 *p = &pias[which];
@@ -991,7 +991,7 @@ int pia_get_output_ca2_z(int which)
// If it's an output, output the bit, if it's an input, it's
// pulled up
- return p->out_ca2 |
+ return p->out_ca2 |
C2_INPUT(p->ctl_a);
}