diff options
author | mrb0nk500 <b0nk@b0nk.xyz> | 2019-12-14 23:58:01 -0500 |
---|---|---|
committer | mrb0nk500 <b0nk@b0nk.xyz> | 2019-12-14 23:58:01 -0500 |
commit | 0b81224b6ab8cd6da45039525962c6490ed2df56 (patch) | |
tree | a76bfa10ee6ae726efb212442a68c17b253b49ba /Makefile | |
parent | c6d71bcf0e545a490fdeb0dfcafea2d5a02157c6 (diff) |
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.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 : |