diff options
| author | cadmic <cadmic24@gmail.com> | 2024-02-26 22:53:10 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-02-27 01:53:10 -0500 |
| commit | c3faefc061b7bc57eae460deffd7d2d0ad7d3c0c (patch) | |
| tree | 68a6cd043ed077db584293bbcaf1494fcfd7581e /src/boot/is_debug.c | |
| parent | 7f64ace8f0d38b83c1e616b74994cc0ef043de3a (diff) | |
Fix some retail `boot` data (#1668)
* Fix is_debug.c bss
* Fix stackcheck.c rodata
* Poke jenkins
* Don't introduce new variable
Diffstat (limited to 'src/boot/is_debug.c')
| -rw-r--r-- | src/boot/is_debug.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/boot/is_debug.c b/src/boot/is_debug.c index b5d077212..9507fde85 100644 --- a/src/boot/is_debug.c +++ b/src/boot/is_debug.c @@ -1,11 +1,11 @@ #include "global.h" -OSPiHandle* sISVHandle; // official name : is_Handle - #define gISVDbgPrnAdrs ((ISVDbg*)0xB3FF0000) #define ASCII_TO_U32(a, b, c, d) ((u32)((a << 24) | (b << 16) | (c << 8) | (d << 0))) #if OOT_DEBUG +OSPiHandle* sISVHandle; // official name : is_Handle + void isPrintfInit(void) { sISVHandle = osCartRomInit(); osEPiWriteIo(sISVHandle, (u32)&gISVDbgPrnAdrs->put, 0); |
