📄 exceptionhandler-bf537.asm
字号:
/* =============================================================================
*
* Description: This is the exception handler.
*
* -----------------------------------------------------------------------------
* Comments:
*
* ===========================================================================*/
#include "VDK.h"
.file_attr prefersMem="internal";
.section data1;
/* declare external globals */
/* declare locals */
.section program;
/******************************************************************************
* UserExceptionHandler
*/
/* User Exception Handler entry point */
.GLOBAL UserExceptionHandler;
UserExceptionHandler:
/**
* Handle the exception...
*
* Remember that the VDK reserves the user exception 0, which
* is accessed with the following instruction:
*
* EXCPT 0;
*
* Any other exception (user or system), is your responsibility to
* handle here.
*/
RTX;
.UserExceptionHandler.end:
/* ========================================================================== */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -