source: rtems/c/src/lib/libbsp/m68k/idp/console/mc68ec.c @ 5df7515e

4.104.114.95
Last change on this file since 5df7515e was 5df7515e, checked in by Ralf Corsepius <ralf.corsepius@…>, on 08/19/08 at 10:28:06

Add missing prototypes.

  • Property mode set to 100644
File size: 379 bytes
Line 
1/*
2 * mc68ec.c -- Low level support for the Motorola mc68ec0x0 board.
3 *             Written by rob@cygnus.com (Rob Savoye)
4 *
5 *  $Id$
6 */
7
8#include "leds.h"
9
10/*
11 * rtems_bsp_delay -- delay execution. This is an ugly hack. It should
12 *          use the timer, but I'm waiting for docs. (sigh)
13 */
14void rtems_bsp_delay(int num)
15{
16  while (num--)
17    {
18      asm ("nop");
19    }
20}
Note: See TracBrowser for help on using the repository browser.