⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 error.c

📁 The Lite Evaluation/Demonstration Kit is intended to illustrate use of the AN3042. The AN3042 is c
💻 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 + -