mirror of
https://github.com/MiSTer-devel/Main_MiSTer.git
synced 2026-04-19 03:04:28 +00:00
This allows for changing the index without breaking older core releases and also to use boot0-3.rom.
15 lines
292 B
C
15 lines
292 B
C
#ifndef SNES_H
|
|
#define SNES_H
|
|
|
|
#define SNES_FILE_RAW 0
|
|
#define SNES_FILE_ROM 1
|
|
#define SNES_FILE_SPC 2
|
|
#define SNES_FILE_BS 3
|
|
|
|
uint8_t* snes_get_header(fileTYPE *f);
|
|
void snes_patch_bs_header(fileTYPE *f, uint8_t *buf);
|
|
void snes_msu_init(const char* name);
|
|
void snes_poll(void);
|
|
|
|
#endif
|