idac: added dipswitch support (beta)

This commit is contained in:
2023-07-14 00:41:23 +02:00
parent da97d23b51
commit c27ef9674d
13 changed files with 263 additions and 16 deletions

View File

@ -17,6 +17,7 @@
#include "platform/pcbid.h"
#include "platform/platform.h"
#include "platform/vfs.h"
#include "platform/dipsw.h"
void platform_config_load(
struct platform_config *cfg,
@ -32,3 +33,4 @@ void netenv_config_load(struct netenv_config *cfg, const wchar_t *filename);
void nusec_config_load(struct nusec_config *cfg, const wchar_t *filename);
void pcbid_config_load(struct pcbid_config *cfg, const wchar_t *filename);
void vfs_config_load(struct vfs_config *cfg, const wchar_t *filename);
void dipsw_config_load(struct dipsw_config *cfg, const wchar_t *filename);