2001-10-30 Joel Sherrill <joel@OARcorp.com>

* start/start.S: Use __mcpu32__ instead of mcpu32 and change sense
	of conditional so cpu32 does not attempt to use 68000 style
	interrupt vectoring.
This commit is contained in:
Joel Sherrill
2001-10-30 14:30:08 +00:00
parent 6a91771a7d
commit 37b2f343a2
2 changed files with 7 additions and 1 deletions

View File

@@ -1,3 +1,9 @@
2001-10-30 Joel Sherrill <joel@OARcorp.com>
* start/start.S: Use __mcpu32__ instead of mcpu32 and change sense
of conditional so cpu32 does not attempt to use 68000 style
interrupt vectoring.
2001-10-11 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* .cvsignore: Add autom4te.cache for autoconf > 2.52.

View File

@@ -55,7 +55,7 @@ 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))