diff options
Diffstat (limited to 'src/mame/machine/bbc.cpp')
-rw-r--r-- | src/mame/machine/bbc.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/machine/bbc.cpp b/src/mame/machine/bbc.cpp index 35d64e69aa9..e62c66251eb 100644 --- a/src/mame/machine/bbc.cpp +++ b/src/mame/machine/bbc.cpp @@ -623,7 +623,7 @@ WRITE8_MEMBER(bbc_state::via_system_porta_w) /* Write enable to the sound generator */ //if (!m_latch->q0_r() && m_sn) //{ - // m_sn->write(m_via_system_porta); + // m_sn->write(m_via_system_porta); //} /* Keyboard write enable */ if (!m_latch->q3_r()) @@ -1332,7 +1332,7 @@ void bbc_state::setup_banks(memory_bank *membank, uint32_t shift) /* TODO: expansion devices currently use machine().root_device(), add method to slot interfaces to return pointer to memregion("rom") */ //if (m_fdc->rom_region[i]) //{ - // membank->configure_entry(i, m_fdc->rom_region[i] + shift); + // membank->configure_entry(i, m_fdc->rom_region[i] + shift); //} /* romslots populated by user override expansion devices */ if (m_rom[i] && (rom_region = memregion(region_tag.assign(m_rom[i]->tag()).append(GENERIC_ROM_REGION_TAG).c_str()))) |