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

📄 sctns.h

📁 RTEMS (Real-Time Executive for Multiprocessor Systems) is a free open source real-time operating sys
💻 H
字号:
/*-------------------------------------*//* sctns.h                             *//* Last change : 10.10.94              *//*-------------------------------------*//* *  $Id: sctns.h,v 1.2 1999/10/27 16:27:34 joel Exp $ */#ifndef _SCTNS_H_#define _SCTNS_H_  /* Copy all code into SRAM.   * Fault Table and Fault Handler stays in EPROM to not be    * destroyed by a buggy user program. Beyond that only   * monitor Start point and procedures to copy code   * into RAM will be relocated in ROM.   */extern void copyCodeToRam(void);  /* Zero uninitialized section.   */extern void zeroBss(void);  /* Some relocation symbols. These   * symbols are defined in rom.ld.   */extern unsigned int codeRomStart[];extern unsigned int codeRamStart[];extern unsigned int codeRamEnd[];extern unsigned int bssStart[];extern unsigned int bssEnd[]; #endif/*-------------*//* End of file *//*-------------*/

⌨️ 快捷键说明

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