source: rtems/c/src/lib/libbsp/i960/rxgen960/startup/sctns.h @ 702c5f5

4.104.114.84.95
Last change on this file since 702c5f5 was 702c5f5, checked in by Joel Sherrill <joel.sherrill@…>, on 10/27/99 at 15:29:18

The rxgen960 BSP and i960 RPM support was submitted by Mark Bronson
<mark@…> of RAMIX.

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