mirror of
https://github.com/encounter/ac-decomp.git
synced 2026-03-30 10:57:04 -07:00
19 lines
217 B
C
19 lines
217 B
C
#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
|