summaryrefslogtreecommitdiff
path: root/src/boot/O2/debug.c
blob: 3933b585e0d7744f00aa322a894b00b26ef088ba (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "global.h"
#include "fault.h"

void _dbg_hungup(const char* file, int lineNum) {
    osGetThreadId(NULL);
    Fault_AddHungupAndCrash(file, lineNum);
}

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