mirror of
https://github.com/Polprzewodnikowy/SummerCart64.git
synced 2025-01-22 17:31:11 +01:00
8 lines
136 B
C
8 lines
136 B
C
#include "exception.h"
|
|
|
|
|
|
void error_display (const char *fmt, ...) {
|
|
EXCEPTION_TRIGGER(TRIGGER_CODE_ERROR);
|
|
while (1);
|
|
}
|