source: rtems/c/src/lib/libbsp/sh/shsim/include/bsp.h @ 053abcda

4.115
Last change on this file since 053abcda was 053abcda, checked in by Joel Sherrill <joel.sherrill@…>, on 04/23/14 at 23:38:43

multiple BSPs: Remove BSP_SMALL_MEMORY

  • Property mode set to 100644
File size: 1.2 KB
Line 
1/*
2 *  This include file contains all board IO definitions.
3 *
4 *  SH-gdb simulator BSP
5 *
6 *  Author: Ralf Corsepius (corsepiu@faw.uni-ulm.de)
7 *
8 *  COPYRIGHT (c) 2001, Ralf Corsepius, Ulm, Germany
9 *
10 *  This program is distributed in the hope that it will be useful,
11 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13 *
14 *  COPYRIGHT (c) 2001.
15 *  On-Line Applications Research Corporation (OAR).
16 *
17 *  The license and distribution terms for this file may be
18 *  found in the file LICENSE in this distribution or at
19 *  http://www.rtems.org/license/LICENSE.
20 */
21
22#ifndef _BSP_H
23#define _BSP_H
24
25#ifdef __cplusplus
26extern "C" {
27#endif
28
29#include <rtems.h>
30#include <rtems/clockdrv.h>
31#include <rtems/console.h>
32
33#include <bspopts.h>
34#include <bsp/default-initial-extension.h>
35
36/*
37 * FIXME: One of these would be enough.
38 */
39#include <rtems/devnull.h>
40
41/* Constants */
42
43Thread clock_driver_sim_idle_body(uintptr_t);
44#define BSP_IDLE_TASK_BODY clock_driver_sim_idle_body
45
46/*
47 * Defined in the linker script 'linkcmds'
48 */
49
50extern void *CPU_Interrupt_stack_low;
51extern void *CPU_Interrupt_stack_high;
52
53#ifdef __cplusplus
54}
55#endif
56
57#endif
Note: See TracBrowser for help on using the repository browser.