summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/sh/simsh4/startup/hw_init.c
blob: 2d1b747ad9f9e7134059bbef22721df6714bb72b (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
/*
 *  hw_init.c - initialize hardware resources for simulator.
 *  Currently there are no models of hardware resources which should be
 *  initialized here; it is just a stub.
 *
 *  Copyright (C) 2001 OKTET Ltd., St.-Petersburg, Russia
 *  Author: Victor V. Vengerov <vvv@oktet.ru>
 *
 *  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.
 *
 *
 *  The license and distribution terms for this file may be
 *  found in the file LICENSE in this distribution or at
 *  http://www.OARcorp.com/rtems/license.html.
 *
 *  $Id$
 */

#include <bsp.h>

#include <stdlib.h>

#include <rtems/libio.h>
#include <iosupp.h>

/* exported entries */
extern void bsp_hw_init (void);
extern void early_hw_init (void);

/* early_hw_init --
 *     Hardware initialization called from 'start.S' on "#ifdef START_HW_INIT"
 *
 * ARGUMENTS:
 *     none
 *
 * RETURNS:
 *     none
 */
void
early_hw_init (void)
{
};

/* bsp_hw_init --
 *     Part of hardware initialization called from bspstart.c
 *
 * ARGUMENTS:
 *     none
 *
 * RETURNS:
 *     none
 */
void bsp_hw_init (void) 
{
}