summaryrefslogtreecommitdiff
path: root/src/boot_O2/assert.c
blob: 04fcf87fee10cfa7a62ddd1a99fccad841478fe3 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "global.h"
#include "fault.h"

void __assert(const char* file, u32 lineNum) {
    osGetThreadId(NULL);
    Fault_AddHungupAndCrash(file, lineNum);
}

void func_800862B4(void) {
    Fault_AddHungupAndCrash("Reset", 0);
}