segatools/platform/system.h

17 lines
275 B
C
Raw Permalink Normal View History

2023-07-13 22:41:23 +00:00
#pragma once
#include <windows.h>
#include <stdbool.h>
#include <stdint.h>
#include "platform/vfs.h"
struct system_config {
2023-07-13 22:41:23 +00:00
bool enable;
2023-12-03 21:22:17 +00:00
bool freeplay;
2023-07-13 22:41:23 +00:00
bool dipsw[8];
};
HRESULT system_init(const struct system_config *cfg, const struct vfs_config *vfs_cfg);