mirror of
https://github.com/holub/mame
synced 2025-07-04 17:38:08 +03:00
Remove obsolete logging (nw)
This commit is contained in:
parent
ce6617c154
commit
eb587f04b4
@ -41,10 +41,8 @@ template<int HighBits, int Width, int AddrShift, int Endian> void handler_entry_
|
|||||||
offs_t entry = (cur >> LowBits) & BITMASK;
|
offs_t entry = (cur >> LowBits) & BITMASK;
|
||||||
if(m_dispatch[entry]->is_dispatch())
|
if(m_dispatch[entry]->is_dispatch())
|
||||||
m_dispatch[entry]->dump_map(map);
|
m_dispatch[entry]->dump_map(map);
|
||||||
else {
|
else
|
||||||
fprintf(stderr, "add range %08x %08x\n", m_ranges[entry].start, m_ranges[entry].end);
|
|
||||||
map.emplace_back(memory_entry{ m_ranges[entry].start, m_ranges[entry].end, m_dispatch[entry] });
|
map.emplace_back(memory_entry{ m_ranges[entry].start, m_ranges[entry].end, m_dispatch[entry] });
|
||||||
}
|
|
||||||
cur = map.back().end + 1;
|
cur = map.back().end + 1;
|
||||||
} while(cur && !((cur ^ base) & UPMASK));
|
} while(cur && !((cur ^ base) & UPMASK));
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user