Files
rtems/c/src/lib/libbsp/m68k/idp/console/mc68ec.c
Ralf Corsepius 6b51fc106b 2011-02-11 Ralf Corsépius <ralf.corsepius@rtems.org>
* console/mc68ec.c:
	Use "__asm__" instead of "asm" for improved c99-compliance.
2011-02-11 12:30:14 +00:00

21 lines
383 B
C

/*
* mc68ec.c -- Low level support for the Motorola mc68ec0x0 board.
* Written by rob@cygnus.com (Rob Savoye)
*
* $Id$
*/
#include "leds.h"
/*
* rtems_bsp_delay -- delay execution. This is an ugly hack. It should
* use the timer, but I'm waiting for docs. (sigh)
*/
void rtems_bsp_delay(int num)
{
while (num--)
{
__asm__ ("nop");
}
}