source: rtems/c/src/lib/libbsp/arm/raspberrypi/startup/bspstart.c @ f2e9d0d

4.115
Last change on this file since f2e9d0d was c32b1ef, checked in by Alan Cudmore <alan.cudmore@…>, on 03/23/13 at 18:13:07

bsp/raspberrypi: New BSP

  • Property mode set to 100644
File size: 522 bytes
RevLine 
[c32b1ef]1/**
2 * @file
3 *
4 * @ingroup raspberrypi
5 *
6 * @brief Startup code.
7 */
8
9/*
10 * Copyright (c) 2013 by Alan Cudmore
11 *
12 *  The license and distribution terms for this file may be
13 *  found in the file LICENSE in this distribution or at
14 *
15 *  http://www.rtems.com/license/LICENSE
16 */
17
18#include <bsp.h>
19#include <bsp/bootcard.h>
20#include <bsp/irq-generic.h>
21#include <bsp/irq.h>
22#include <bsp/linker-symbols.h>
23#include <bsp/stackalloc.h>
24#include <bsp/raspberrypi.h>
25
26void bsp_start(void)
27{
28    bsp_interrupt_initialize();
29}
Note: See TracBrowser for help on using the repository browser.