| 4 | |
| 5 | #if defined(CLOVER_BUILD) || !defined(_MSC_VER) |
| 6 | void abort(void) |
| 7 | { |
| 8 | printf("A fatal error happened. System halted\n"); |
| 9 | while (1) { // tis will avoid warning : Function declared 'noreturn' should not return |
| 10 | CpuDeadLoop(); |
| 11 | } |
| 12 | } |
| 13 | #endif |
| 14 | |
| 15 | bool stop_at_panic = true; |