summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/h8/h8s2319.cpp
diff options
context:
space:
mode:
author hap <happppp@users.noreply.github.com>2024-03-07 19:13:10 +0100
committer hap <happppp@users.noreply.github.com>2024-03-07 19:13:10 +0100
commit27b4e602870709ad5225bfde3c553c109439683a (patch)
tree135684aa7fb7ac98269dcb5e57fde08d8caf77ec /src/devices/cpu/h8/h8s2319.cpp
parent3226026f2dca7eeda158bad2c16a483640e9c890 (diff)
misc hap disasm: correction to prev commit
Diffstat (limited to 'src/devices/cpu/h8/h8s2319.cpp')
-rw-r--r--src/devices/cpu/h8/h8s2319.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/cpu/h8/h8s2319.cpp b/src/devices/cpu/h8/h8s2319.cpp
index 49bfcac7e73..480c7deed89 100644
--- a/src/devices/cpu/h8/h8s2319.cpp
+++ b/src/devices/cpu/h8/h8s2319.cpp
@@ -92,7 +92,7 @@ h8s2318_device::h8s2318_device(const machine_config &mconfig, const char *tag, d
void h8s2319_device::map(address_map &map)
{
- if (m_rom_size && m_md >= 6)
+ if(m_rom_size && m_md >= 6)
map(0x000000, m_rom_size - 1).rom();
map(0xfffc00 - m_ram_size, 0xfffbff).view(m_ram_view);
@@ -375,7 +375,7 @@ void h8s2319_device::internal_update(u64 current_time)
add_event(event_time, m_sci[1]->internal_update(current_time));
// SCI2 used by H8S-2329
- if (m_sci[2])
+ if(m_sci[2])
add_event(event_time, m_sci[2]->internal_update(current_time));
add_event(event_time, m_timer8[0]->internal_update(current_time));
@@ -452,7 +452,7 @@ void h8s2319_device::syscr_w(u8 data)
logerror("syscr = %02x\n", data);
// RAME
- if (data & 1)
+ if(data & 1)
m_ram_view.select(0);
else
m_ram_view.disable();