mirror of
https://github.com/zeldaret/oot
synced 2026-05-23 06:54:24 -04:00
13 lines
261 B
C
13 lines
261 B
C
#include "libc64/sleep.h"
|
|
#include "attributes.h"
|
|
#include "printf.h"
|
|
#include "sys_freeze.h"
|
|
#include "terminal.h"
|
|
|
|
NORETURN void func_800D31A0(void) {
|
|
PRINTF(VT_FGCOL(RED) "\n**** Freeze!! ****\n" VT_RST);
|
|
for (;;) {
|
|
Sleep_Msec(1000);
|
|
}
|
|
}
|