Changeset 0289674 in rtems
- Timestamp:
- 12/13/00 22:10:07 (21 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 797d88ba
- Parents:
- 32f415d
- Location:
- c/src/lib/libcpu/mips
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/libcpu/mips/ChangeLog
r32f415d r0289674 1 2000-12-13 Joel Sherrill <joel@OARcorp.com> 2 3 * configure.in: Added new directories. 4 * shared/interrupts/Makefile.am: Added AM_CPPFLAGS to define TX39 5 when compiling for a TX3904. 6 * shared/interrupts/maxvectors.c: Corrected conditional logic. 7 * tx39/Makefile.am: Added vectorisrs. 8 * tx39/vectorisrs/Makefile.am, tx39/vectorisrs/vectorisrs.c, 9 * tx39/vectorisrs/.cvsignore: New files. This decodes the 10 interrupt pending information on the TX3904 and vectors 11 an interrupt. 12 1 13 2000-12-13 Joel Sherrill <joel@OARcorp.com> 2 14 -
c/src/lib/libcpu/mips/configure.in
r32f415d r0289674 41 41 tx39/Makefile 42 42 tx39/include/Makefile 43 tx39/vectorisrs/Makefile 43 44 timer/Makefile) -
c/src/lib/libcpu/mips/shared/interrupts/Makefile.am
r32f415d r0289674 21 21 # 22 22 23 if tx39 24 EXTRA_FLAGS = -DTX39 25 endif 26 27 AM_CPPFLAGS += $(EXTRA_FLAGS) 28 23 29 $(PGM): $(interrupts_rel_OBJECTS) 24 30 $(make-rel) -
c/src/lib/libcpu/mips/shared/interrupts/maxvectors.c
r32f415d r0289674 19 19 * So you have: 2 software interrupts, an NMI, and 16 others. 20 20 */ 21 #if defined( tx3904)21 #if defined(TX39) 22 22 #define MAX_VECTORS 19 23 23 #endif 24 24 25 #ifndef MAX 25 #ifndef MAX_VECTORS 26 26 #define MAX_VECTORS 8 27 27 #endif -
c/src/lib/libcpu/mips/tx39/Makefile.am
r32f415d r0289674 6 6 ACLOCAL_AMFLAGS = -I ../../../../../../aclocal 7 7 8 SUBDIRS = include 8 SUBDIRS = include vectorisrs 9 9 10 10 include $(top_srcdir)/../../../../../automake/subdirs.am
Note: See TracChangeset
for help on using the changeset viewer.