summaryrefslogtreecommitdiffstats
path: root/bsps/sh/shsim/include/bsp.h
blob: ff63b3849b3cd9dd702848e87527e7d1a153b4eb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/*
 *  SH-gdb simulator BSP
 *
 *  This include file contains all board IO definitions.
 */

/*
 *  Author: Ralf Corsepius (corsepiu@faw.uni-ulm.de)
 *
 *  COPYRIGHT (c) 2001, Ralf Corsepius, Ulm, Germany
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 *
 *  COPYRIGHT (c) 2001.
 *  On-Line Applications Research Corporation (OAR).
 *
 *  The license and distribution terms for this file may be
 *  found in the file LICENSE in this distribution or at
 *  http://www.rtems.org/license/LICENSE.
 */

#ifndef LIBBSP_SH_SHSIM_BSP_H
#define LIBBSP_SH_SHSIM_BSP_H

#ifndef ASM

#include <rtems.h>

#include <bspopts.h>
#include <bsp/default-initial-extension.h>

/*
 * FIXME: One of these would be enough.
 */
#include <rtems/devnull.h>

#ifdef __cplusplus
extern "C" {
#endif

/* Constants */

void *clock_driver_sim_idle_body(uintptr_t);
#define BSP_IDLE_TASK_BODY clock_driver_sim_idle_body

/*
 * BSP methods that cross file boundaries.
 */
int _sys_exit (int n);
void bsp_hw_init(void);

#ifdef __cplusplus
}
#endif

#endif /* !ASM */
#endif