19 lines
304 B
C
19 lines
304 B
C
#ifndef _CARTRIDGE_H_
|
|
#define _CARTRIDGE_H_
|
|
|
|
#include "types.h"
|
|
|
|
struct Bus;
|
|
|
|
struct Cartridge
|
|
{
|
|
Byte* prg_rom;
|
|
Byte* chr_rom;
|
|
|
|
struct Bus* bus;
|
|
};
|
|
|
|
struct Cartridge* createCartridge(struct Bus* parent, const char* filepath);
|
|
void destroyCartridge(struct Cartridge* cartridge);
|
|
|
|
#endif //_CARTRIDGE_H_
|