📄 error.c
字号:
//
// error.c
//
// A simple error handler for the 860
//
// This code gets located at our .errtext = 0xFFF01000, which is the address the 860 jumps to
// when it encounters a bus (and other?) error.
//
#pragma ghs section text=".errtext"
void bus_error_handler (void)
{
while (1)
;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -