summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/bbc.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/bbc.cpp')
-rw-r--r--src/mame/drivers/bbc.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/drivers/bbc.cpp b/src/mame/drivers/bbc.cpp
index 9e3e0bb3da6..ce3ab361072 100644
--- a/src/mame/drivers/bbc.cpp
+++ b/src/mame/drivers/bbc.cpp
@@ -1190,7 +1190,7 @@ void bbc_state::bbcb(machine_config &config)
/* printer */
centronics_device &centronics(CENTRONICS(config, "printer", centronics_devices, "printer"));
- centronics.ack_handler().set(m_via6522_1, FUNC(via6522_device::write_ca1)).invert(); // ack seems to be inverted?
+ centronics.ack_handler().set(m_via6522_1, FUNC(via6522_device::write_ca1));
output_latch_device &latch(OUTPUT_LATCH(config, "cent_data_out"));
centronics.set_output_latch(latch);
@@ -1433,8 +1433,8 @@ void bbcbp_state::acw443(machine_config &config)
m_wd_fdc->subdevice<floppy_connector>("1")->set_default_option(nullptr);
/* 32016 co-processor */
- //m_tube->set_default_option("32016");
- //m_tube->set_fixed(true);
+ m_tube->set_default_option("32016l");
+ m_tube->set_fixed(true);
/* Acorn Winchester Disc 20MB */
m_1mhzbus->set_default_option("awhd");
@@ -1608,7 +1608,7 @@ void bbcm_state::bbcm(machine_config &config)
/* printer */
centronics_device &centronics(CENTRONICS(config, "printer", centronics_devices, "printer"));
- centronics.ack_handler().set(m_via6522_1, FUNC(via6522_device::write_ca1)).invert(); // ack seems to be inverted?
+ centronics.ack_handler().set(m_via6522_1, FUNC(via6522_device::write_ca1));
output_latch_device &latch(OUTPUT_LATCH(config, "cent_data_out"));
centronics.set_output_latch(latch);