diff options
author | 2024-05-24 16:16:07 +0200 | |
---|---|---|
committer | 2024-05-24 16:16:46 +0200 | |
commit | eae3fe98efcf92c1bc296cb9fd31ee90609e7008 (patch) | |
tree | c00db7371acfca22f4c225fdca66e1729fe7c1b3 /src/devices/machine/sci4.cpp | |
parent | 7074cdff920fed3be7b4295412a70298f265be47 (diff) |
feagv9: remove 512K ram option
Diffstat (limited to 'src/devices/machine/sci4.cpp')
-rw-r--r-- | src/devices/machine/sci4.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/machine/sci4.cpp b/src/devices/machine/sci4.cpp index 7ed8196d3e7..f60c211e1b0 100644 --- a/src/devices/machine/sci4.cpp +++ b/src/devices/machine/sci4.cpp @@ -182,7 +182,7 @@ u8 sci4_device::reset_r(offs_t slot) void sci4_device::target_w(u8 data) { - if(data == 0x11 and m_targets == 0x07) + if(data == 0x11 && m_targets == 0x07) machine().debug_break(); m_targets = data; u8 rx = ((((m_rx[6] << 3) | (m_rx[5] << 2) | (m_rx[4] << 1) | m_rx[3]) | ~(m_targets >> 4)) & 0xf) == 0xf; |