summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorvin <git@vineetk.net>2024-08-31 22:24:33 -0400
committervin <git@vineetk.net>2024-09-01 01:49:37 -0400
commit279478f16f8ea4fcc3c8765ff964954368664106 (patch)
treea3c3c1bb28d26f9040a3afec7f519c92fc7ac5a0 /Makefile
parentc0679b404d3bd9c20133a1868113f200eae2cf9f (diff)
add preliminary apu register support
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index e0a80f1..c6481cf 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
1CFLAGS = -O2 -Wall -Wextra -pedantic -Wno-unused-parameter 1CFLAGS = -O2 -Wall -Wextra -pedantic -Wno-unused-parameter
2 2
3nes: 3nes:
4 ${CC} ${CFLAGS} -o nes cpu.c rom.c ppu.c 4 ${CC} ${CFLAGS} -o nes cpu.c rom.c ppu.c apu.c
5 5
6test: nes 6test: nes
7 ./nes ${HOME}/src/other/nes-test-roms/other/nestest.nes 7 ./nes ${HOME}/src/other/nes-test-roms/other/nestest.nes