Make CPU respect chosen option (JIT, etc)
This commit is contained in:
@@ -6,7 +6,12 @@
|
||||
|
||||
namespace n64 {
|
||||
struct Core {
|
||||
explicit Core();
|
||||
enum CPUType {
|
||||
Interpreted,
|
||||
DynamicRecompiler,
|
||||
CachedInterpreter
|
||||
};
|
||||
explicit Core(CPUType);
|
||||
void Stop();
|
||||
void LoadROM(const std::string &);
|
||||
[[nodiscard]] bool LoadTAS(const fs::path &) const;
|
||||
|
||||
Reference in New Issue
Block a user