forked from Imagelibrary/rtems
2001-01-03 Joel Sherrill <joel@OARcorp.com>
* start/start.S: Added space for vectors on CPU32 configuration. * startup/bspstart.c: Fixed typo.
This commit is contained in:
@@ -1,3 +1,8 @@
|
|||||||
|
2001-01-03 Joel Sherrill <joel@OARcorp.com>
|
||||||
|
|
||||||
|
* start/start.S: Added space for vectors on CPU32 configuration.
|
||||||
|
* startup/bspstart.c: Fixed typo.
|
||||||
|
|
||||||
2000-12-19 Joel Sherrill <joel@OARcorp.com>
|
2000-12-19 Joel Sherrill <joel@OARcorp.com>
|
||||||
|
|
||||||
* startup/linkcmds: Set _VBR to 0 to indicate that the vectors are
|
* startup/linkcmds: Set _VBR to 0 to indicate that the vectors are
|
||||||
|
|||||||
@@ -55,7 +55,9 @@ V____IPC: .long start - V___ISSP
|
|||||||
| Lots of macros, how-ever it creates a simple ROM vector table
|
| Lots of macros, how-ever it creates a simple ROM vector table
|
||||||
|
|
|
|
||||||
|
|
||||||
#if !defined(mcpu32)
|
#if defined(mcpu32)
|
||||||
|
.space 1016 | reserve space for rest of vectors
|
||||||
|
#else
|
||||||
#define MAKE_EXCEPTION_VECTOR(n) V___##n: .long (_CPU_ISR_jump_table + (n * 10))
|
#define MAKE_EXCEPTION_VECTOR(n) V___##n: .long (_CPU_ISR_jump_table + (n * 10))
|
||||||
|
|
||||||
MAKE_EXCEPTION_VECTOR(2)
|
MAKE_EXCEPTION_VECTOR(2)
|
||||||
|
|||||||
@@ -61,7 +61,7 @@ void bsp_start( void )
|
|||||||
|
|
||||||
_M68k_Ramsize = (unsigned long)&_RamSize; /* RAM size set in linker script */
|
_M68k_Ramsize = (unsigned long)&_RamSize; /* RAM size set in linker script */
|
||||||
|
|
||||||
#if defined(cpu32)
|
#if defined(mcpu32)
|
||||||
#warning "do something about vectors!!!"
|
#warning "do something about vectors!!!"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user