integration of n64 core

This commit is contained in:
CocoSimone
2022-06-06 22:37:42 +02:00
parent bc3a0ff63a
commit e70aa0b072
31 changed files with 627 additions and 137 deletions

9
src/core/n64/Core.cpp Normal file
View File

@@ -0,0 +1,9 @@
#include <Core.hpp>
namespace natsukashii::n64::core {
Core::Core(const std::string& rom) {}
void Core::Run() {
}
}