30test.cpp, skeetsht.cpp: Remove EEPROM areas from external maps

This commit is contained in:
AJR 2022-06-28 09:46:01 -04:00
parent 1442ceeb5a
commit c639edbca7
2 changed files with 0 additions and 2 deletions

View File

@ -187,7 +187,6 @@ void skeetsht_state::hc11_pgm_map(address_map &map)
map(0x0000, 0xffff).rom().region("68hc11", 0);
map(0x1800, 0x1800).w(FUNC(skeetsht_state::ay8910_w));
map(0x2800, 0x2807).rw(FUNC(skeetsht_state::tms_r), FUNC(skeetsht_state::tms_w));
map(0xb600, 0xbdff).ram(); //internal EEPROM
}

View File

@ -176,7 +176,6 @@ void namco_30test_state::okibank_w(u8 data)
void namco_30test_state::main_map(address_map &map)
{
map(0x0d80, 0x0dbf).ram(); // EEPROM read-back data goes there
map(0x2000, 0x2000).rw(m_oki, FUNC(okim6295_device::read), FUNC(okim6295_device::write));
map(0x4000, 0x401f).w(FUNC(namco_30test_state::led_w));
map(0x6000, 0x6003).w(FUNC(namco_30test_state::led_rank_w));