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

4.115
Last change on this file since fd36451 was fd36451, checked in by Joel Sherrill <joel.sherrill@…>, on 10/20/14 at 15:57:54

m68k/idp: Fix warnings

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