source: rtems/c/src/lib/libbsp/h8300/h8sim/startup/bspstart.c @ a196084

4.104.115
Last change on this file since a196084 was a196084, checked in by Joel Sherrill <joel.sherrill@…>, on 09/16/08 at 19:06:10

2008-09-16 Joel Sherrill <joel.sherrill@…>

  • startup/bspstart.c: Remove unnecessary includes of rtems/libcsupport.h and rtems/libio.h.
  • Property mode set to 100644
File size: 763 bytes
Line 
1/*
2 *  This routine starts the application.  It includes application,
3 *  board, and monitor specific initialization and configuration.
4 *  The generic CPU dependent initialization has been performed
5 *  before this routine is invoked.
6 *
7 *  COPYRIGHT (c) 1989-1999.
8 *  On-Line Applications Research Corporation (OAR).
9 *
10 *  The license and distribution terms for this file may be
11 *  found in the file LICENSE in this distribution or at
12 *  http://www.rtems.com/license/LICENSE.
13 *
14 *  $Id$
15 */
16
17#include <string.h>
18
19#include <bsp.h>
20
21/*
22 *  bsp_start
23 *
24 *  This routine does the bulk of the system initialization.
25 */
26
27void bsp_start( void )
28{
29}
30
31void H8BD_Install_IRQ(
32  uint32_t      vector,
33  proc_ptr      new_handler,
34  proc_ptr      *old_handler )
35{ /* empty */
36}
Note: See TracBrowser for help on using the repository browser.