summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/m68k/idp/console/mc68ec.c
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/lib/libbsp/m68k/idp/console/mc68ec.c')
-rw-r--r--c/src/lib/libbsp/m68k/idp/console/mc68ec.c19
1 files changed, 0 insertions, 19 deletions
diff --git a/c/src/lib/libbsp/m68k/idp/console/mc68ec.c b/c/src/lib/libbsp/m68k/idp/console/mc68ec.c
deleted file mode 100644
index 9041ca527b..0000000000
--- a/c/src/lib/libbsp/m68k/idp/console/mc68ec.c
+++ /dev/null
@@ -1,19 +0,0 @@
-/*
- * mc68ec.c -- Low level support for the Motorola mc68ec0x0 board.
- * Written by rob@cygnus.com (Rob Savoye)
- */
-
-#include <bsp.h>
-#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");
- }
-}