1
0
mirror of https://github.com/mist-devel/mist-firmware.git synced 2026-01-11 23:43:04 +00:00
Gyorgy Szombathelyi 9d7f44b10b Add PSX CD support
2024-03-14 20:22:24 +01:00

9 lines
164 B
C

#ifndef _PSX_H_
#define _PSX_H_
#include <stdint.h>
void psx_mount_cd(const unsigned char *name);
void psx_read_cd(uint8_t drive_index, unsigned int lba);
#endif