Initial Commit

This commit is contained in:
0x221E
2026-02-04 12:52:42 +01:00
commit 4671a62ddf
15 changed files with 430 additions and 0 deletions

10
src/Bus.cpp Normal file
View File

@@ -0,0 +1,10 @@
#include "Bus.h"
#include <stdexcept>
Bus::Bus() {
for(int i = 0; i < 992 * 1024; i++)
{
m_RAM[i] = 0;
}
}