2020-03-17 04:31:30 +00:00
|
|
|
.include "macro.inc"
|
|
|
|
|
2024-07-28 04:24:13 +00: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 04:31:30 +00:00
|
|
|
|
|
|
|
.section .data
|
|
|
|
|
2020-05-26 22:09:00 +00:00
|
|
|
.balign 16
|
|
|
|
|
2024-07-28 04:24:13 +00:00
|
|
|
/* temporary file name, rename to something more appropriate when decompiled */
|
2020-04-04 17:17:56 +00:00
|
|
|
|
2024-07-28 04:24:13 +00:00
|
|
|
#if OOT_DEBUG
|
2021-11-01 16:23:49 +00:00
|
|
|
glabel gMojiFontTLUTs
|
2024-07-28 04:24:13 +00:00
|
|
|
.incbin "incbin/gMojiFontTLUTs"
|
2020-03-17 04:31:30 +00:00
|
|
|
|
2021-11-01 16:23:49 +00:00
|
|
|
glabel gMojiFontTex
|
2024-07-28 04:24:13 +00:00
|
|
|
.incbin "incbin/gMojiFontTex"
|
|
|
|
#endif
|