1
0
mirror of https://github.com/mist-devel/mist-firmware.git synced 2026-02-07 00:17:13 +00:00
Files
mist-devel.mist-firmware/arc_file.h
Gyorgy Szombathelyi 230a7ee47f Extend the status word to 64 bits
Well-behaved user_io should continue to work without any change.
2020-12-05 19:11:39 +01:00

18 lines
267 B
C

/*
* arc_file.h
* Open/parse .arc (Arcade) files
*
*/
#ifndef ARC_FILE_H
#define ARC_FILE_H
char arc_open(char *fname);
void arc_reset();
char *arc_get_rbfname();
char *arc_get_corename();
char *arc_get_conf();
uint64_t arc_get_default();
#endif // ARC_FILE_H