From 0b81224b6ab8cd6da45039525962c6490ed2df56 Mon Sep 17 00:00:00 2001 From: mrb0nk500 Date: Sat, 14 Dec 2019 23:58:01 -0500 Subject: We now have keyboard support!!! I also added the WAI instruction, which puts the thread that executed it, into a catatonic stat, where it can't do anything, until an interrupt occurs. I will be starting work on GFsuX next. I also might start work on SuBAsm, the Sux Bootstrapping Assembler. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index d2764cd..7266284 100644 --- a/Makefile +++ b/Makefile @@ -11,7 +11,7 @@ CFLAGS = $(PCC_CFLAGS) $(CFLAGS_EXTRA) OBJS = asmmon.o sux.o OBJ_NAME = cisc-0.2 all : $(OBJS) - $(CC) $(OBJS) $(CFLAGS) -lpthread -o $(OBJ_NAME) + $(CC) $(OBJS) $(CFLAGS) -lpthread -lcurses -o $(OBJ_NAME) sux.o : $(CC) sux.c -c $(CFLAGS) -o sux.o asmmon.o : -- cgit v1.2.3-13-gbd6f