Speeding up PPC tests significantly.

This commit is contained in:
Ben Vanik
2015-12-27 12:03:30 -08:00
parent 6c59881eee
commit ca8d658ffe
3 changed files with 16 additions and 5 deletions

View File

@@ -270,6 +270,10 @@ void Memory::UnmapViews() {
}
}
void Memory::Reset() {
// TODO(benvanik): zero memory, free all heap page tables, etc.
}
BaseHeap* Memory::LookupHeap(uint32_t address) {
if (address < 0x40000000) {
return &heaps_.v00000000;