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

📄 sampint3.c

📁 上传一个带源代码的嵌入式实时多任务操作系统CMX
💻 C
字号:
#include <reg166.h>
#include <cxfuncs.h>

/* this interrupt does absolutly nothing, but shows the user that if
  the interrupt uses the pragma noframe directive, that it must call
  the CMX K_OS_Intrp_Exit_No_Frame, as the LAST function before the end brace. */
#pragma noframe

interrupt( 0x23) void
t3_handler( void )
{
	/* ... user code ... */
	K_OS_Intrp_Exit_No_Frame();
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -