source: rtems/c/src/lib/libbsp/i960/rxgen960/startup/sctns.h @ 3299388d

4.104.114.84.95
Last change on this file since 3299388d was 2ea8df3, checked in by Joel Sherrill <joel.sherrill@…>, on 10/27/99 at 16:27:34

Added CVS Ids and a basic header. More header cleanup needed.

  • Property mode set to 100644
File size: 880 bytes
Line 
1/*-------------------------------------*/
2/* sctns.h                             */
3/* Last change : 10.10.94              */
4/*-------------------------------------*/
5/*
6 *  $Id$
7 */
8
9#ifndef _SCTNS_H_
10#define _SCTNS_H_
11
12  /* Copy all code into SRAM.
13   * Fault Table and Fault Handler stays in EPROM to not be
14   * destroyed by a buggy user program. Beyond that only
15   * monitor Start point and procedures to copy code
16   * into RAM will be relocated in ROM.
17   */
18extern void copyCodeToRam(void);
19  /* Zero uninitialized section.
20   */
21extern void zeroBss(void);
22
23  /* Some relocation symbols. These
24   * symbols are defined in rom.ld.
25   */
26extern unsigned int codeRomStart[];
27extern unsigned int codeRamStart[];
28extern unsigned int codeRamEnd[];
29
30extern unsigned int bssStart[];
31extern unsigned int bssEnd[];
32
33#endif
34/*-------------*/
35/* End of file */
36/*-------------*/
37
Note: See TracBrowser for help on using the repository browser.