mirror of
https://github.com/MiSTer-devel/Main_MiSTer.git
synced 2026-04-19 03:04:28 +00:00
13 lines
312 B
C
13 lines
312 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);
|
|
int psx_chd_hunksize();
|
|
const char* psx_get_game_id();
|
|
void psx_poll();
|
|
void psx_reset();
|
|
|
|
#endif
|