URL
https://opencores.org/ocsvn/minsoc/minsoc/trunk
Subversion Repositories minsoc
Compare Revisions
- This comparison shows the changes necessary to convert path
/minsoc/trunk/sw/support
- from Rev 54 to Rev 55
- ↔ Reverse comparison
Rev 54 → Rev 55
/int.c
5,8 → 5,6
#include "or1200.h" |
#include "int.h" |
|
#ifdef OR1K |
|
/* Interrupt handlers table */ |
struct ihnd int_handlers[MAX_INT_HANDLERS]; |
|
79,5 → 77,3
mtspr(SPR_PICSR, 0); //clear interrupt status: all modules have level interrupts, which have to be cleared by software, |
} //thus this is safe, since non processed interrupts will get re-asserted soon enough |
|
|
#endif |
/Makefile
1,7 → 1,7
all: libsupport.a reset-nocache.o reset-ic.o reset-dc.o reset-icdc.o |
all: libsupport.a reset-nocache.o reset-ic.o reset-dc.o reset-icdc.o except.o |
|
libsupport.a: support.o int.o except.o tick.o |
$(OR32_TOOL_PREFIX)-ar cru libsupport.a support.o except.o int.o tick.o |
libsupport.a: support.o tick.o int.o |
$(OR32_TOOL_PREFIX)-ar cru libsupport.a support.o tick.o int.o |
$(OR32_TOOL_PREFIX)-ranlib libsupport.a |
|
support.o: support.c |
26,6 → 26,6
$(OR32_TOOL_PREFIX)-gcc $(GCC_OPT) -c -o $@ $? |
|
tick.o: tick.c |
$(OR32_TOOL_PREFIX)-gcc $(GCC_OPT) $? -c -o $@ |
$(OR32_TOOL_PREFIX)-gcc $(GCC_OPT) -c -o $@ $? |
|
include Makefile.inc |