SH6578: has 10k of wram in this config (nw)

This commit is contained in:
Melissa Goad 2020-02-11 21:32:44 -06:00
parent 6b3a689ce1
commit 29b71264a7

View File

@ -49,9 +49,10 @@ WRITE8_MEMBER(nes_sh6578_state::sprite_dma_w)
void nes_sh6578_state::nes_sh6578_map(address_map &map)
{
map(0x0000, 0x07ff).ram();
map(0x0000, 0x1fff).ram();
map(0x2000, 0x3fff).rw(m_ppu, FUNC(ppu2c0x_device::read), FUNC(ppu2c0x_device::write));
map(0x4014, 0x4014).w(FUNC(nes_sh6578_state::sprite_dma_w));
map(0x5000, 0x57ff).ram();
map(0x8000, 0xffff).rom();
}