summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/machine/ac1.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/machine/ac1.c')
-rw-r--r--src/mess/machine/ac1.c26
1 files changed, 13 insertions, 13 deletions
diff --git a/src/mess/machine/ac1.c b/src/mess/machine/ac1.c
index a831d4b58cc..a83ba9d93ad 100644
--- a/src/mess/machine/ac1.c
+++ b/src/mess/machine/ac1.c
@@ -81,24 +81,24 @@ WRITE8_MEMBER(ac1_state::ac1_port_b_w)
{
/*
- bit description
-
- 0
- 1 RTTY receive
- 2 RTTY transmit
- 3 RTTY PTT
- 4
- 5
- 6 cassette out
- 7 cassette in
-
- */
+ bit description
+
+ 0
+ 1 RTTY receive
+ 2 RTTY transmit
+ 3 RTTY PTT
+ 4
+ 5
+ 6 cassette out
+ 7 cassette in
+
+ */
m_cassette->output((data & 0x40) ? -1.0 : +1.0);
}
Z80PIO_INTERFACE( ac1_z80pio_intf )
{
- DEVCB_NULL, /* callback when change interrupt status */
+ DEVCB_NULL, /* callback when change interrupt status */
DEVCB_DRIVER_MEMBER(ac1_state,ac1_port_a_r),
DEVCB_DRIVER_MEMBER(ac1_state,ac1_port_a_w),
DEVCB_NULL,