18 lines
287 B
C
18 lines
287 B
C
![]() |
#ifndef _CARTRIDGE_H_
|
||
|
#define _CARTRIDGE_H_
|
||
|
|
||
|
#include "types.h"
|
||
|
|
||
|
struct Bus;
|
||
|
|
||
|
struct Cartridge
|
||
|
{
|
||
|
Byte* memory;
|
||
|
|
||
|
struct Bus* bus;
|
||
|
};
|
||
|
|
||
|
struct Cartridge* createCartridge(struct Bus* parent, const char* filepath);
|
||
|
void destroyCartridge(struct Cartridge* cartridge);
|
||
|
|
||
|
#endif //_CARTRIDGE_H_
|