diff options
Diffstat (limited to 'src/mame/drivers/superslave.cpp')
-rw-r--r-- | src/mame/drivers/superslave.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/drivers/superslave.cpp b/src/mame/drivers/superslave.cpp index 14bb97e1252..f1bc7ed9d88 100644 --- a/src/mame/drivers/superslave.cpp +++ b/src/mame/drivers/superslave.cpp @@ -36,13 +36,13 @@ READ8_MEMBER( superslave_state::read ) { uint8_t data = 0; - offs_t boundry = 0xc000 | ((m_memctrl & 0xf0) << 6); + offs_t boundary = 0xc000 | ((m_memctrl & 0xf0) << 6); if ((offset < 0x1000) && BIT(m_cmd, 0)) { data = m_rom->base()[offset & 0x7ff]; } - else if (offset < boundry) + else if (offset < boundary) { if (BIT(m_memctrl, 0)) { @@ -68,9 +68,9 @@ READ8_MEMBER( superslave_state::read ) WRITE8_MEMBER( superslave_state::write ) { - offs_t boundry = 0xc000 | ((m_memctrl & 0xf0) << 6); + offs_t boundary = 0xc000 | ((m_memctrl & 0xf0) << 6); - if (offset < boundry) + if (offset < boundary) { if (BIT(m_memctrl, 0)) { |