remove stupid abstraction

This commit is contained in:
SimoZ64
2025-06-28 13:48:18 +02:00
parent 1be357e607
commit 4f618d35e0
20 changed files with 200 additions and 575 deletions

View File

@@ -8,7 +8,6 @@ Core::Core() : cpu(std::make_unique<Interpreter>(parallel)) {}
void Core::Stop() {
pause = true;
romLoaded = false;
rom = {};
cpu->Reset();
}