2005-05-04 Joel Sherrill <joel@OARcorp.com>

* rtems/score/m68k.h: Change _ColdFire_VBR to _VBR.
This commit is contained in:
Joel Sherrill
2005-05-04 17:36:44 +00:00
parent a9cd3a973b
commit 7111268193
2 changed files with 5 additions and 1 deletions

View File

@@ -1,3 +1,7 @@
2005-05-04 Joel Sherrill <joel@OARcorp.com>
* rtems/score/m68k.h: Change _ColdFire_VBR to _VBR.
2005-05-03 Joel Sherrill <joel@OARcorp.com> 2005-05-03 Joel Sherrill <joel@OARcorp.com>
* rtems/score/cpu.h: Change definition of _VBR to a simple pointer. * rtems/score/cpu.h: Change definition of _VBR to a simple pointer.

View File

@@ -338,7 +338,7 @@ extern void *_VBR;
#define m68k_set_vbr( vbr ) \ #define m68k_set_vbr( vbr ) \
do { \ do { \
asm volatile ( "movec %0,%%vbr " : : "r" (vbr)); \ asm volatile ( "movec %0,%%vbr " : : "r" (vbr)); \
_ColdFire_VBR = (void *)vbr; \ _VBR = (void *)vbr; \
} while(0) } while(0)
#else #else