Files
Main_MiSTer/support/snes/snes.h
paulb-nl ee55783393 SNES: remove hardcoded index for ROM. (#934)
This allows for changing the index without breaking older core releases
and also to use boot0-3.rom.
2024-11-25 14:40:35 +08:00

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