mirror of
https://github.com/LIV2/pistorm.git
synced 2025-12-06 07:02:48 +00:00
14 lines
265 B
C
14 lines
265 B
C
// SPDX-License-Identifier: MIT
|
|
|
|
#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);
|