Implement & link first_game.c, sys_romcheck.c

This commit is contained in:
Cuyler36
2023-05-29 23:05:11 -04:00
parent 068d951791
commit bf9e2a3be4
10 changed files with 84 additions and 2 deletions
+18
View File
@@ -0,0 +1,18 @@
#ifndef FAMICOM_H
#define FAMICOM_H
#include "types.h"
#ifdef __cplusplus
extern "C" {
#endif
typedef u8 (*FAMICOM_GETSAVECHAN_PROC)(int* player_no, int* slot_card_result);
extern void famicom_setCallback_getSaveChan(FAMICOM_GETSAVECHAN_PROC getSaveChan_proc);
#ifdef __cplusplus
}
#endif
#endif