mirror of
https://github.com/Polprzewodnikowy/SummerCart64.git
synced 2025-01-07 18:28:14 +01:00
9 lines
155 B
C
9 lines
155 B
C
|
#include "error.h"
|
||
|
#include "exception.h"
|
||
|
|
||
|
|
||
|
void error_display (const char *message) {
|
||
|
EXCEPTION_TRIGGER(TRIGGER_CODE_ERROR);
|
||
|
while (1);
|
||
|
}
|