amex: Shift config structs around

This commit is contained in:
Tau
2019-11-05 19:36:35 -05:00
parent 8485879ff7
commit f8289689f0
13 changed files with 61 additions and 45 deletions

View File

@ -2,8 +2,19 @@
#include <windows.h>
#include "amex/config.h"
#include "amex/ds.h"
#include "amex/eeprom.h"
#include "amex/gpio.h"
#include "amex/jvs.h"
#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;
};
HRESULT amex_hook_init(
const struct amex_config *cfg,