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 SYS_ROMCHECK_H
#define SYS_ROMCHECK_H
#include "types.h"
#ifdef __cplusplus
extern "C" {
#endif
#define SYS_ROMCHECK_DEBUG_ROM_VERSION 0x90
extern void sys_romcheck();
#ifdef __cplusplus
}
#endif
#endif