OpenCores
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
    from Rev 55 to Rev 54
    Reverse comparison

Rev 55 → Rev 54

/support/int.c
5,6 → 5,8
#include "or1200.h"
#include "int.h"
 
#ifdef OR1K
 
/* Interrupt handlers table */
struct ihnd int_handlers[MAX_INT_HANDLERS];
 
77,3 → 79,5
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
/support/Makefile
1,7 → 1,7
all: libsupport.a reset-nocache.o reset-ic.o reset-dc.o reset-icdc.o except.o
all: libsupport.a reset-nocache.o reset-ic.o reset-dc.o reset-icdc.o
 
libsupport.a: support.o tick.o int.o
$(OR32_TOOL_PREFIX)-ar cru libsupport.a support.o tick.o int.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
$(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
/eth/Makefile
1,5 → 1,5
cases = eth-nocache eth-icdc
common = ../support/except.o ../support/libsupport.a
common = ../support/libsupport.a ../support/except.o
drivers = ../drivers/libdrivers.a
 
all: $(cases)
/uart/Makefile
1,5 → 1,5
cases = uart-nocache uart-icdc
common = ../support/except.o ../support/libsupport.a
common = ../support/libsupport.a ../support/except.o
drivers = ../drivers/libdrivers.a
 
all: $(cases)

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.