Added support for multiboot dols. This allows demo discs, bonus discs etc to be played.

* Flushed the JIT cache on "ICFI" (Flush Instruction Cache)
* Made all instructions one cycle in duration

Fixes issue 233

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6088 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
skidau 2010-08-11 10:45:27 +00:00
parent 9f57345c11
commit 6918a9e1d6
7 changed files with 20 additions and 4 deletions

View file

@ -560,7 +560,10 @@ void CCodeWindow::OnCPUMode(wxCommandEvent& event)
}
// Clear the JIT cache to enable these changes
jit->ClearCache();
if (jit)
{
jit->ClearCache();
}
// Update
UpdateButtonStates();
}