15 lines
283 B
C
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
|