Refactor fatal/hard error names

This commit is contained in:
CTCaer
2020-07-14 22:41:48 +03:00
parent 1f67251331
commit ab5b59e10d
3 changed files with 32 additions and 32 deletions

View File

@@ -307,16 +307,16 @@ static void _show_errors()
switch (*excp_type)
{
case EXCP_TYPE_RESET:
WPRINTF("Reset");
WPRINTF("RST");
break;
case EXCP_TYPE_UNDEF:
WPRINTF("Undefined instruction");
WPRINTF("UNDEF");
break;
case EXCP_TYPE_PABRT:
WPRINTF("Prefetch abort");
WPRINTF("PABRT");
break;
case EXCP_TYPE_DABRT:
WPRINTF("Data abort");
WPRINTF("DABRT");
break;
}
WPRINTF("\n");