Skip to content

Commit 287521e

Browse files
committed
victor9k_fdc.cpp: Fix copy-paste error.
1 parent 80f33d4 commit 287521e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/mame/act/victor9k_fdc.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -748,9 +748,9 @@ uint8_t victor_9000_fdc_device::via4_pb_r()
748748
749749
*/
750750

751-
uint8_t output_mask = m_via4->read(via6522_device::VIA_DDRA);
751+
uint8_t output_mask = m_via4->read(via6522_device::VIA_DDRB);
752752

753-
return (m_via_l0ms & output_mask) | (m_scp_l0ms & ~output_mask);
753+
return (m_via_l1ms & output_mask) | (m_scp_l1ms & ~output_mask);
754754
}
755755

756756
void victor_9000_fdc_device::via4_pb_w(uint8_t data)

0 commit comments

Comments
 (0)