2020-03-17 00:31:30 -04:00
|
|
|
.include "macro.inc"
|
|
|
|
|
2024-07-27 21:24:13 -07:00
|
|
|
/* assembler directives */
|
|
|
|
.set noat /* allow manual use of $at */
|
|
|
|
.set noreorder /* don't insert nops after branches */
|
|
|
|
.set gp=64 /* allow use of 64-bit general purpose registers */
|
2020-03-17 00:31:30 -04:00
|
|
|
|
|
|
|
.section .data
|
|
|
|
|
2020-05-27 00:09:00 +02:00
|
|
|
.balign 16
|
|
|
|
|
2024-07-27 21:24:13 -07:00
|
|
|
/* temporary file name, rename to something more appropriate when decompiled */
|
2020-04-04 18:17:56 +01:00
|
|
|
|
2024-07-27 21:24:13 -07:00
|
|
|
#if OOT_DEBUG
|
2021-11-01 17:23:49 +01:00
|
|
|
glabel gMojiFontTLUTs
|
2024-07-27 21:24:13 -07:00
|
|
|
.incbin "incbin/gMojiFontTLUTs"
|
2020-03-17 00:31:30 -04:00
|
|
|
|
2021-11-01 17:23:49 +01:00
|
|
|
glabel gMojiFontTex
|
2024-07-27 21:24:13 -07:00
|
|
|
.incbin "incbin/gMojiFontTex"
|
|
|
|
#endif
|