URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [rtos/] [rtems/] [c/] [src/] [lib/] [libbsp/] [m68k/] [idp/] [console/] [mc68ec.c] - Rev 602
Go to most recent revision | Compare with Previous | Blame | View Log
/* * mc68ec.c -- Low level support for the Motorola mc68ec0x0 board. * Written by rob@cygnus.com (Rob Savoye) * * $Id: mc68ec.c,v 1.2 2001-09-27 12:00:09 chris Exp $ */ #include "leds.h" /* * delay -- delay execution. This is an ugly hack. It should * use the timer, but I'm waiting for docs. (sigh) */ void delay(num) int num; { while (num--) { asm ("nop"); } }
Go to most recent revision | Compare with Previous | Blame | View Log