Files
Bear/Bus.h
2026-03-03 23:50:39 -06:00

15 lines
283 B
C

// 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