Files
Main_MiSTer/support/psx/psx.h
2022-05-26 22:15:25 +08:00

11 lines
270 B
C

#ifndef PSX_H
#define PSX_H
void psx_mount_cd(int f_index, int s_index, const char *filename);
void psx_fill_blanksave(uint8_t *buffer, uint32_t lba, int cnt);
void psx_read_cd(uint8_t *buffer, int lba, int cnt);
const char* psx_get_game_id();
void psx_poll();
#endif