source: rtems/c/src/lib/libbsp/mips/hurricane/startup/bspstart.c @ efdfd48

4.104.115
Last change on this file since efdfd48 was efdfd48, checked in by Ralf Corsepius <ralf.corsepius@…>, on 11/29/09 at 15:27:07

Whitespace removal.

  • Property mode set to 100644
File size: 817 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
21uint32_t bsp_clicks_per_microsecond;
22
23/*
24 *  bsp_start
25 *
26 *  This routine does the bulk of the system initialization.
27 */
28void bsp_start( void )
29{
30
31  bsp_clicks_per_microsecond = CPU_CLOCK_RATE_MHZ;
32
33  mips_install_isr_entries(); /* Install generic MIPS exception handler */
34}
Note: See TracBrowser for help on using the repository browser.