mirror of
https://github.com/holub/mame
synced 2025-04-22 16:31:49 +03:00
c900: Update memory map for 23-bit addressing (nw)
This commit is contained in:
parent
84ead9d60c
commit
d0cbd88c59
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user