mirror of
https://github.com/holub/mame
synced 2025-07-05 18:08:04 +03:00
sparc: undo accidental delete on prev commit
This commit is contained in:
parent
77c2acd80d
commit
f49f67d8d2
@ -87,6 +87,15 @@ sparc_base_device::sparc_base_device(const machine_config &mconfig, device_type
|
||||
, m_mmu(*this, finder_base::DUMMY_TAG)
|
||||
{
|
||||
m_debugger_config = address_space_config("debug", ENDIANNESS_BIG, 32, 32);
|
||||
|
||||
if (type != MB86930)
|
||||
{
|
||||
for (int i = 0; i < 0x10; i++)
|
||||
{
|
||||
m_asi_names[i] = util::string_format("asi%x", i);
|
||||
m_asi_config[i] = address_space_config(m_asi_names[i].c_str(), ENDIANNESS_BIG, 32, 32);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user