2005-05-20 Chris Johns <chrisj@rtems.org>

* rtems/score/cpu.h, rtems/score/m68k.h: Change declaration of _VBR.
This commit is contained in:
Joel Sherrill
2005-05-20 19:28:20 +00:00
parent 15113c45ca
commit 862cbe3aee
3 changed files with 6 additions and 2 deletions

View File

@@ -1,3 +1,7 @@
2005-05-20 Chris Johns <chrisj@rtems.org>
* rtems/score/cpu.h, rtems/score/m68k.h: Change declaration of _VBR.
2005-05-04 Joel Sherrill <joel@OARcorp.com>
* rtems/score/m68k.h: Change _ColdFire_VBR to _VBR.

View File

@@ -224,7 +224,7 @@ typedef struct {
SCORE_EXTERN void *_CPU_Interrupt_stack_low;
SCORE_EXTERN void *_CPU_Interrupt_stack_high;
extern void *_VBR;
extern uint32_t _VBR[];
#if ( M68K_HAS_VBR == 0 )

View File

@@ -332,7 +332,7 @@ extern "C" {
asm volatile ( "movec %0,%%vbr " : : "r" (vbr))
#elif ( M68K_COLDFIRE_ARCH == 1 )
extern void *_VBR;
extern uint32_t _VBR[];
#define m68k_get_vbr( _vbr ) _vbr = _VBR
#define m68k_set_vbr( vbr ) \