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

void _dbg_hungup(const char* name, int line) {
    osGetThreadId(NULL);
    fault_AddHungupAndCrash(name, line);
}

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