forked from MiSTer-devel/Main_MiSTer
-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbootcore.h
More file actions
18 lines (14 loc) · 555 Bytes
/
bootcore.h
File metadata and controls
18 lines (14 loc) · 555 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// bootcore.h
// 2024, Aitor Gomez Garcia (info@aitorgomez.net)
// Thanks to Sorgelig and BBond007 for their help and advice in the development of this feature.
#ifndef __BOOTCORE_H__
#define __BOOTCORE_H__
char *getcoreName(char *path);
char *getcoreExactName(char *path);
char *replaceStr(const char *str, const char *oldstr, const char *newstr);
char *loadLastcore();
char *findCore(const char *name, char *coreName, int indent);
void bootcore_init(const char *path);
extern char bootcoretype[64];
extern int16_t btimeout;
#endif // __BOOTCORE_H__