summaryrefslogtreecommitdiff
path: root/mm/src/boot/O2/debug.c
blob: c8929d9edcf19729835dfb485599d8a41a8dfbeb (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);
}