Lay down initial JIT structure

This commit is contained in:
SimoneN64
2023-07-25 10:53:23 +02:00
parent fcee7f5850
commit 4715652970
7 changed files with 175 additions and 11 deletions

View File

@@ -53,7 +53,7 @@ Settings::Settings(n64::Core& core) {
}
if(jit) {
Util::panic("JIT is unimplemented!");
core.cpu = std::make_unique<n64::JIT>();
} else {
core.cpu = std::make_unique<n64::Interpreter>();
}