summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorRichard Henderson <rth@twiddle.net>2011-05-02 10:46:14 -0700
committerRichard Henderson <rth@twiddle.net>2011-05-02 10:46:14 -0700
commitee671d4ef86346e8d10cd0474aad998c16aa0383 (patch)
treed81fe5e4f49bc2fd0990a686283bd332c67bc59b /Makefile
parent2441ea1234e5b4399954ca64a101794cf6e813b3 (diff)
downloadqemu-palcode-ee671d4ef86346e8d10cd0474aad998c16aa0383.zip
qemu-palcode-ee671d4ef86346e8d10cd0474aad998c16aa0383.tar.gz
qemu-palcode-ee671d4ef86346e8d10cd0474aad998c16aa0383.tar.bz2
Implement the console callback interface.
At least enough for GETC and PUTS.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index f62888f..71ce4ae 100644
--- a/Makefile
+++ b/Makefile
@@ -12,7 +12,7 @@ CPPFLAGS = -DSYSTEM_H='"sys-$(SYSTEM).h"'
CFLAGS += -mcpu=ev67
-OBJS = pal.o sys-$(SYSTEM).o init.o uart.o memset.o printf.o
+OBJS = pal.o sys-$(SYSTEM).o init.o crb.o uart.o memset.o printf.o
all: palcode-$(SYSTEM)
@@ -27,3 +27,4 @@ pal.o: pal.S osf.h sys-$(SYSTEM).h core-$(CORE).h
init.o: init.c hwrpb.h osf.h uart.h sys-$(SYSTEM).h core-$(CORE).h
printf.o: printf.c uart.h
uart.o: uart.c uart.h protos.h
+crb.o: crb.c hwrpb.h protos.h console.h uart.h