gb6/src/rom.h

17 lines
206 B
C
Raw Normal View History

2019-04-16 06:25:00 +00:00
#ifndef _ROM_H
#define _ROM_H
#include "types.h"
struct rom {
2022-07-21 03:21:36 +00:00
u32 length;
2019-04-16 06:25:00 +00:00
int type;
u8 *data;
};
int rom_load(struct rom *rom, const char *filename);
void rom_free(struct rom *rom);
#endif