fernvale: Get IRQs to at least do something
IRQs now do something. They still don't work, though.
This commit is contained in:
parent
624dbb2f2e
commit
8f18cfd58b
11 changed files with 633 additions and 134 deletions
13
Makefile
13
Makefile
|
@ -8,14 +8,17 @@ LDFLAGS = --nostdlib -T fernvale.ld
|
|||
LIBS =
|
||||
|
||||
SRC_C = \
|
||||
main.c \
|
||||
vectors.c \
|
||||
serial.c \
|
||||
bionic.c \
|
||||
vsprintf.c \
|
||||
utils.c
|
||||
cmd-irq.c \
|
||||
irq.c \
|
||||
main.c \
|
||||
serial.c \
|
||||
utils.c \
|
||||
vectors.c \
|
||||
vsprintf.c
|
||||
|
||||
SRC_S = \
|
||||
irqasm.S \
|
||||
start.S
|
||||
|
||||
OBJ = $(addprefix $(BUILD)/, $(SRC_S:.S=.o) $(SRC_C:.c=.o))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue