c900: Update memory map for 23-bit addressing (nw)

This commit is contained in:
AJR 2020-04-24 10:06:08 -04:00
parent 84ead9d60c
commit d0cbd88c59

View File

@ -74,14 +74,14 @@ void c900_state::sound_pb_w(u8 data)
void c900_state::mem_map(address_map &map)
{
map(0x00000, 0x07fff).rom().region("roms", 0);
map(0x000000, 0x007fff).rom().region("roms", 0);
}
void c900_state::data_map(address_map &map)
{
map(0x00000, 0x07fff).rom().region("roms", 0);
map(0x08000, 0x6ffff).ram();
map(0xf0000, 0xf1fff).ram();
map(0x000000, 0x007fff).rom().region("roms", 0);
map(0x008000, 0x06ffff).ram();
map(0x3f0000, 0x3f1fff).ram();
}
void c900_state::io_map(address_map &map)