summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/apple1.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/apple1.cpp')
-rw-r--r--src/mame/drivers/apple1.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/apple1.cpp b/src/mame/drivers/apple1.cpp
index 26fc47f880a..c6ecc243e96 100644
--- a/src/mame/drivers/apple1.cpp
+++ b/src/mame/drivers/apple1.cpp
@@ -494,7 +494,7 @@ WRITE8_MEMBER(apple1_state::pia_display_w)
// and to the display hardware
WRITE_LINE_MEMBER(apple1_state::pia_display_gate_w)
{
- m_pia->write_portb((state << 7) ^ 0x80);
+ m_pia->portb_w((state << 7) ^ 0x80);
// falling edge means start the display timer
if (state == CLEAR_LINE)