source: rtems/bsps/or1k/generic_or1k/start/bspstart.c @ 9964895

5
Last change on this file since 9964895 was 9964895, checked in by Sebastian Huber <sebastian.huber@…>, on 04/20/18 at 08:35:35

bsps: Move startup files to bsps

Adjust build support files to new directory layout.

This patch is a part of the BSP source reorganization.

Update #3285.

  • Property mode set to 100644
File size: 435 bytes
Line 
1/**
2 * @file
3 *
4 * @ingroup generic_or1k
5 *
6 * @brief Benchmark timer support.
7 */
8
9/*
10 * Copyright (c) 2014-2015 by Hesham ALMatary
11 *
12 *  The license and distribution terms for this file may be
13 *  found in the file LICENSE in this distribution or at
14 *  http://www.rtems.org/license/LICENSE
15 */
16
17#include <bsp.h>
18#include <bsp/bootcard.h>
19
20void bsp_start( void )
21{
22  rtems_cache_enable_instruction();
23  rtems_cache_enable_data();
24}
Note: See TracBrowser for help on using the repository browser.