source: rtems/c/src/lib/libbsp/m68k/idp/console/mc68ec.c @ 183af89

4.115
Last change on this file since 183af89 was 6b51fc10, checked in by Ralf Corsepius <ralf.corsepius@…>, on 02/11/11 at 12:30:14

2011-02-11 Ralf Corsépius <ralf.corsepius@…>

  • console/mc68ec.c: Use "asm" instead of "asm" for improved c99-compliance.
  • Property mode set to 100644
File size: 383 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.