mirror of
https://github.com/holub/mame
synced 2025-07-13 13:35:41 +03:00
Fix warning about non existing memory space when netlist is used ...
... as an additional cpu. (nw)
This commit is contained in:
parent
cb16de91c6
commit
1504931203
@ -399,10 +399,6 @@ void netlist_mame_t::vlog(const plib::plog_level &l, const pstring &ls) const
|
||||
// netlist_mame_device_t
|
||||
// ----------------------------------------------------------------------------------------
|
||||
|
||||
static ADDRESS_MAP_START(program_dummy, AS_PROGRAM, 8, netlist_mame_device_t)
|
||||
AM_RANGE(0x000, 0x3ff) AM_ROM
|
||||
ADDRESS_MAP_END
|
||||
|
||||
netlist_mame_device_t::netlist_mame_device_t(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
|
||||
: device_t(mconfig, NETLIST_CORE, "Netlist core device", tag, owner, clock, "netlist_core", __FILE__),
|
||||
m_icount(0),
|
||||
@ -598,7 +594,7 @@ netlist_mame_cpu_device_t::netlist_mame_cpu_device_t(const machine_config &mconf
|
||||
device_state_interface(mconfig, *this),
|
||||
device_disasm_interface(mconfig, *this),
|
||||
device_memory_interface(mconfig, *this),
|
||||
m_program_config("program", ENDIANNESS_LITTLE, 8, 12, 0, ADDRESS_MAP_NAME(program_dummy))
|
||||
m_program_config("program", ENDIANNESS_LITTLE, 8, 12) // Interface is needed to keep debugger happy
|
||||
{
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user