mirror of
https://github.com/holub/mame
synced 2025-04-23 00:39:36 +03:00
policetr: restore sound (nw)
Adjusted memory map to match R3041 address mapping (kuseg addresses offset by 1GB).
This commit is contained in:
parent
762b72b524
commit
80638b822a
@ -237,6 +237,8 @@ WRITE32_MEMBER(policetr_state::speedup_w)
|
||||
|
||||
void policetr_state::mem(address_map &map)
|
||||
{
|
||||
map.global_mask(0x3fffffff);
|
||||
|
||||
map(0x00000000, 0x0001ffff).ram().share(m_rambase);
|
||||
map(0x00200000, 0x0020000f).w(FUNC(policetr_state::video_w));
|
||||
map(0x00400000, 0x00400003).r(FUNC(policetr_state::video_r));
|
||||
@ -257,6 +259,8 @@ void policetr_state::mem(address_map &map)
|
||||
|
||||
void sshooter_state::mem(address_map &map)
|
||||
{
|
||||
map.global_mask(0x3fffffff);
|
||||
|
||||
map(0x00000000, 0x0001ffff).ram().share(m_rambase);
|
||||
map(0x00200000, 0x00200003).w(FUNC(sshooter_state::bsmt2000_data_w));
|
||||
map(0x00300001, 0x00300001).w(FUNC(sshooter_state::palette_offset_w));
|
||||
|
Loading…
Reference in New Issue
Block a user