initial commit

This commit is contained in:
2026-03-03 23:50:39 -06:00
commit fa9ff2c753
14 changed files with 441 additions and 0 deletions

15
Bus.h Normal file
View File

@@ -0,0 +1,15 @@
// More of a console context, contains pointers to other console systems who add themselves to the bus as they are started up
#ifndef BEAR_BUS_H
#define BEAR_BUS_H
#include "Cartridge.h"
#include "cpu.h"
struct Bus
{
CPU* cpu;
Cartridge* cartridge;
};
#endif //BEAR_BUS_H