function4.c

来自「基于TS201 Sets up a skeleton overlay syste」· C语言 代码 · 共 14 行

C
14
字号
//*******************************************************************
//  The following code will be the fourth of 4 overlay functions.
//  This function will live in external memory in section ovl_code
//	and run in internal memory under section code.
//*******************************************************************

extern volatile int LastOverlayRun;

void funct4()
{
	LastOverlayRun = LastOverlayRun | 0x08;
}

⌨️ 快捷键说明

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