error.c
来自「The Lite Evaluation/Demonstration Kit is」· C语言 代码 · 共 16 行
C
16 行
//
// 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 + =
减小字号Ctrl + -
显示快捷键?