diff options
Diffstat (limited to 'src/devices/cpu/e0c6200/e0c6s46.cpp')
-rw-r--r-- | src/devices/cpu/e0c6200/e0c6s46.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/devices/cpu/e0c6200/e0c6s46.cpp b/src/devices/cpu/e0c6200/e0c6s46.cpp index 1cd3217f6ee..4a40dff3d70 100644 --- a/src/devices/cpu/e0c6200/e0c6s46.cpp +++ b/src/devices/cpu/e0c6200/e0c6s46.cpp @@ -354,10 +354,7 @@ u8 e0c6s46_device::read_p(u8 port) if (m_p_dir >> port & 1) return m_port_p[port]; - if (port < 4) - return m_read_p[port](port, 0xff); - - return 0; + return m_read_p[port](port, 0xff); } |