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:
Joel Sherrill
2001-01-03 16:41:56 +00:00
parent 2ecb71532d
commit 7f9bee004e
3 changed files with 9 additions and 2 deletions

View File

@@ -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>
* startup/linkcmds: Set _VBR to 0 to indicate that the vectors are

View File

@@ -55,7 +55,9 @@ V____IPC: .long start - V___ISSP
| 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))
MAKE_EXCEPTION_VECTOR(2)

View File

@@ -61,7 +61,7 @@ void bsp_start( void )
_M68k_Ramsize = (unsigned long)&_RamSize; /* RAM size set in linker script */
#if defined(cpu32)
#if defined(mcpu32)
#warning "do something about vectors!!!"
#endif