mrm332/include/bsp.h: Remove rtems_bsp_delay()

This commit is contained in:
Joel Sherrill
2014-03-17 13:25:48 -05:00
parent 65e0fece64
commit 3420b6b76f

View File

@@ -1,7 +1,9 @@
/* bsp.h
*
* This include file contains all mrm board IO definitions.
*
*/
/*
* COPYRIGHT (c) 1989-2009.
* On-Line Applications Research Corporation (OAR).
*
@@ -33,22 +35,6 @@ extern "C" {
#define CONSOLE_SCI
/*
* Simple spin delay in microsecond units for device drivers.
* This is very dependent on the clock speed of the target.
*/
#define rtems_bsp_delay( microseconds ) \
{ register uint32_t _delay=(microseconds); \
register uint32_t _tmp=123; \
__asm__ volatile( "0: \
nbcd %0 ; \
nbcd %0 ; \
dbf %1,0b" \
: "=d" (_tmp), "=d" (_delay) \
: "0" (_tmp), "1" (_delay) ); \
}
/* externals */
extern char _etext[];