summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMichael Pavone <pavone@retrodev.com>2017-01-16 21:38:49 -0800
committerMichael Pavone <pavone@retrodev.com>2017-01-16 21:38:49 -0800
commit440fa629748eafc00758e3fe94e196878bd8a302 (patch)
tree53b554a37c67c8400bb4993d3548cba72b7f4a2e /Makefile
parenteeaba5834df417ed88ab1292ec465320ae0e858e (diff)
Added synthetic test for tracking down interrupt timing issues
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 69923ff..14498c7 100644
--- a/Makefile
+++ b/Makefile
@@ -209,6 +209,9 @@ test_x86 : test_x86.o gen_x86.o gen.o
test_arm : test_arm.o gen_arm.o mem.o gen.o
$(CC) -o test_arm test_arm.o gen_arm.o mem.o gen.o
+
+test_int_timing : test_int_timing.o vdp.o
+ $(CC) -o $@ $^
gen_fib : gen_fib.o gen_x86.o mem.o
$(CC) -o gen_fib gen_fib.o gen_x86.o mem.o