mirror of
https://github.com/MiSTer-devel/Main_MiSTer.git
synced 2026-04-19 03:04:28 +00:00
* CD-i: add cd reading support Inspired by the PSX code * CD-i: add cd reading support Fix CDI track type * CD-i: NvRAM backup and restore
12 lines
281 B
C
12 lines
281 B
C
#ifndef CDI_H
|
|
#define CDI_H
|
|
|
|
void cdi_mount_cd(int s_index, const char *filename);
|
|
void cdi_fill_blanksave(uint8_t *buffer, uint32_t lba, int cnt);
|
|
void cdi_read_cd(uint8_t *buffer, int lba, int cnt);
|
|
int cdi_chd_hunksize();
|
|
const char* cdi_get_game_id();
|
|
void cdi_poll();
|
|
|
|
#endif
|