renamed [gpio] dipsw settings to [system]

This commit is contained in:
2024-08-20 10:48:08 +02:00
parent 6a4cae1165
commit c91c7db3c7
19 changed files with 64 additions and 68 deletions

16
platform/system.h Normal file
View File

@ -0,0 +1,16 @@
#pragma once
#include <windows.h>
#include <stdbool.h>
#include <stdint.h>
#include "platform/vfs.h"
struct system_config {
bool enable;
bool freeplay;
bool dipsw[8];
};
HRESULT system_init(const struct system_config *cfg, const struct vfs_config *vfs_cfg);