* Assisted in design and debug by Joel Sherrill <joel@OARcorp.com>.
	* mongoosev/duart/mg5uart.c, mongoosev/duart/mg5uart.h,
	mongoosev/include/mongoose-v.h, mongoosev/vectorisrs/vectorisrs.c,
	shared/interrupts/maxvectors.c: Now works.  Significant rework
	of exceptions and interrupt vectoring to clean things up.
	* shared/interrupts/vectorexceptions.c: Removed.
	* shared/interrupts/Makefile.am: Reflects above.
This commit is contained in:
Joel Sherrill
2001-05-22 23:20:14 +00:00
parent a355e3ea98
commit 2e7ed911d7
8 changed files with 730 additions and 398 deletions

View File

@@ -31,10 +31,12 @@
* through the IP bits, and 32 more from the PFICR. Some of
* these are reserved but for simplicity in processing, we
* reserve slots for those bits anyway.
*
* gdm, 5/14, added 15 more slots so exceptions can be vectored as well.
*/
#if defined(MONGOOSEV)
#define MAX_VECTORS 37
#define MAX_VECTORS (38+10)
#endif
#ifndef MAX_VECTORS
@@ -42,3 +44,4 @@
#endif
unsigned int mips_interrupt_number_of_vectors = MAX_VECTORS;