source: rtems/c/src/lib/libbsp/i960/rxgen960/startup/sctns.h @ 6128a4a

4.104.114.84.95
Last change on this file since 6128a4a was 6128a4a, checked in by Ralf Corsepius <ralf.corsepius@…>, on 04/21/04 at 10:43:04

Remove stray white spaces.

  • Property mode set to 100644
File size: 877 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/*-------------*/
Note: See TracBrowser for help on using the repository browser.