mirror of
https://github.com/captain-amygdala/pistorm.git
synced 2026-01-24 19:21:41 +00:00
12 lines
235 B
C
12 lines
235 B
C
#include "../config_file/config_file.h"
|
|
|
|
enum base_platforms {
|
|
PLATFORM_NONE,
|
|
PLATFORM_AMIGA,
|
|
PLATFORM_MAC,
|
|
PLATFORM_X68000,
|
|
PLATFORM_NUM,
|
|
};
|
|
|
|
struct platform_config *make_platform_config(char *name, char *subsys);
|