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 fccc5159e6b..bb81a6bdc85 100644
--- a/src/mame/drivers/apple1.cpp
+++ b/src/mame/drivers/apple1.cpp
@@ -495,7 +495,7 @@ WRITE8_MEMBER(apple1_state::pia_display_w)
// and to the display hardware
WRITE_LINE_MEMBER(apple1_state::pia_display_gate_w)
{
- m_pia->portb_w((state << 7) ^ 0x80);
+ m_pia->write_portb((state << 7) ^ 0x80);
// falling edge means start the display timer
if (state == CLEAR_LINE)