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

4.104.114.84.95
Last change on this file since 66387986 was eb5a7e07, checked in by Joel Sherrill <joel.sherrill@…>, on 10/06/95 at 20:48:38

fixed missing CVS IDs

  • Property mode set to 100644
File size: 364 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 * delay -- delay execution. This is an ugly hack. It should
12 *          use the timer, but I'm waiting for docs. (sigh)
13 */
14void delay(num)
15int num;
16{
17  while (num--)
18    {
19      asm ("nop");
20    }
21}
Note: See TracBrowser for help on using the repository browser.