1
0
mirror of https://github.com/aap/pdp6.git synced 2026-02-13 11:34:35 +00:00

implemented instruction fetch

This commit is contained in:
aap
2015-10-31 13:53:44 +01:00
parent c8f1e78e1b
commit de1c0bee6f
5 changed files with 131 additions and 15 deletions

View File

@@ -1,5 +1,8 @@
SRC=main.c apr.c mem.c
CFLAGS=-Wno-shift-op-parentheses -Wno-logical-op-parentheses\
-L/usr/local/lib -I/usr/local/include -lSDL -lSDL_image -lpthread
SRC=main.c apr.c mem.c io.c
CFLAGS= -Wno-shift-op-parentheses -Wno-logical-op-parentheses\
-Wno-bitwise-op-parentheses\
-L/usr/local/lib -I/usr/local/include -lSDL -lSDL_image -lpthread
pdp6: $(SRC) pdp6.h
$(CC) $(CFLAGS) $(SRC) -o pdp6