Initial commit

This commit is contained in:
2026-07-14 19:54:23 +10:00
commit 7aecc9c576
6 changed files with 256 additions and 0 deletions

17
main.cpp Normal file
View File

@@ -0,0 +1,17 @@
#include "emulator.h"
#include <iostream>
// I'm too lazy to write these every time
using in = Instruction;
using it = InstType;
int main() {
std::cout << "Starting VM..." << std::endl;
Memory memory({
in()
});
Emulator emulator(memory);
emulator.start();
}