Start implementing some instructions

This commit is contained in:
SimoneN64
2024-05-21 22:46:08 +02:00
parent 89aa79fa2a
commit a35fac4a4e
9 changed files with 368 additions and 36 deletions

View File

@@ -3,7 +3,7 @@
#include <ParallelRDPWrapper.hpp>
namespace n64 {
Core::Core(ParallelRDP& parallel) : cpu(std::make_unique<Interpreter>(parallel)) {}
Core::Core(ParallelRDP& parallel) : cpu(std::make_unique<JIT>(parallel)) {}
void Core::Stop() {
render = false;