2001-06-19 Joel Sherrill <joel@OARcorp.com>

* start/start.S: Reverse sense of conditional compilation so the
	code will compile for a cpu32.
This commit is contained in:
Joel Sherrill
2001-06-19 14:24:36 +00:00
parent 1f17d21f3e
commit b7dac386bf
2 changed files with 6 additions and 1 deletions

View File

@@ -1,3 +1,8 @@
2001-06-19 Joel Sherrill <joel@OARcorp.com>
* start/start.S: Reverse sense of conditional compilation so the
code will compile for a cpu32.
2001-05-26 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* configure.in: Add bspopts.h.

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))