1
0
mirror of https://gitea.tendokyu.moe/Hay1tsme/segatools.git synced 2024-11-14 13:37:38 +01:00
segatools-hay1tsme/amex/amex.h

22 lines
411 B
C
Raw Normal View History

#pragma once
2019-05-04 19:12:20 +02:00
#include <windows.h>
2019-11-06 01:36:35 +01:00
#include "amex/ds.h"
#include "amex/eeprom.h"
#include "amex/gpio.h"
2019-11-03 19:01:03 +01:00
#include "amex/jvs.h"
2019-11-06 01:36:35 +01:00
#include "amex/sram.h"
struct amex_config {
struct ds_config ds;
struct eeprom_config eeprom;
struct gpio_config gpio;
struct jvs_config jvs;
struct sram_config sram;
};
2019-05-04 19:12:20 +02:00
2019-11-03 19:01:03 +01:00
HRESULT amex_hook_init(
const struct amex_config *cfg,
jvs_provider_t jvs);