mirror of https://github.com/zeldaret/mm.git
build creator (#1726)
This commit is contained in:
parent
d03e8719e6
commit
83bbdf7583
|
@ -1,7 +1,7 @@
|
||||||
#ifndef BUILD_H
|
#ifndef BUILD_H
|
||||||
#define BUILD_H
|
#define BUILD_H
|
||||||
|
|
||||||
extern char gBuildTeam[];
|
extern char gBuildCreator[];
|
||||||
extern char gBuildDate[];
|
extern char gBuildDate[];
|
||||||
extern char gBuildMakeOption[];
|
extern char gBuildMakeOption[];
|
||||||
|
|
||||||
|
|
|
@ -16,7 +16,7 @@ void CIC6105_Noop2(void) {
|
||||||
|
|
||||||
void CIC6105_PrintRomInfo(void) {
|
void CIC6105_PrintRomInfo(void) {
|
||||||
FaultDrawer_DrawText(80, 200, "SP_STATUS %08x", IO_READ(SP_STATUS_REG));
|
FaultDrawer_DrawText(80, 200, "SP_STATUS %08x", IO_READ(SP_STATUS_REG));
|
||||||
FaultDrawer_DrawText(40, 184, "ROM_F [Creator:%s]", gBuildTeam);
|
FaultDrawer_DrawText(40, 184, "ROM_F [Creator:%s]", gBuildCreator);
|
||||||
FaultDrawer_DrawText(56, 192, "[Date:%s]", gBuildDate);
|
FaultDrawer_DrawText(56, 192, "[Date:%s]", gBuildDate);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
const char gBuildTeam[] = "zelda@srd44";
|
const char gBuildCreator[] = "zelda@srd44";
|
||||||
const char gBuildDate[] = "00-07-31 17:04:16";
|
const char gBuildDate[] = "00-07-31 17:04:16";
|
||||||
const char gBuildMakeOption[] = "";
|
const char gBuildMakeOption[] = "";
|
||||||
|
|
Loading…
Reference in New Issue