1
0
mirror of https://gitea.tendokyu.moe/Dniel97/segatools.git synced 2024-11-13 16:00:46 +01:00
segatools-dniel97/amex/amex.c

16 lines
277 B
C

#include "amex/amex.h"
#include "amex/ds.h"
#include "amex/eeprom.h"
#include "amex/gpio.h"
#include "amex/jvs.h"
#include "amex/sram.h"
void amex_hook_init(void)
{
ds_hook_init();
eeprom_hook_init();
gpio_hook_init();
jvs_hook_init();
sram_hook_init();
}