mirror of
https://github.com/holub/mame
synced 2025-04-22 08:22:15 +03:00
Fix MT06314, V33 only has a 20-bit address bus, nw
This commit is contained in:
parent
fe2e7acaa4
commit
107b328d10
@ -36,8 +36,10 @@ const tiny_rom_entry *nec_p72_t::device_rom_region() const
|
||||
//-------------------------------------------------
|
||||
|
||||
static ADDRESS_MAP_START( p72_mem, AS_PROGRAM, 16, nec_p72_t )
|
||||
AM_RANGE(0x000000, 0x0fffff) AM_ROM /* 1Mbit firmware */
|
||||
AM_RANGE(0x100000, 0x1fffff) AM_RAM /* 1Mbit external RAM */ /* TODO might be 2x1Mbit */
|
||||
AM_RANGE(0x000000, 0x0fffff) AM_ROM /* 1Mbyte firmware */
|
||||
//AM_RANGE(0x100000, 0x1fffff) AM_RAM /* 1Mbyte external RAM */ /* TODO might be 2x1Mbit */
|
||||
// [RH] 29 August 2016: Commented out because the NEC V33 only has 20 address lines, and
|
||||
// the V40 has more, but we don't have an NEC V40 implemented yet.
|
||||
ADDRESS_MAP_END
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user