initial commit
This commit is contained in:
15
Bus.h
Normal file
15
Bus.h
Normal 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
|
||||
Reference in New Issue
Block a user