summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMichael Pavone <pavone@retrodev.com>2019-02-08 23:09:58 -0800
committerMichael Pavone <pavone@retrodev.com>2019-02-08 23:09:58 -0800
commitfa418eee3639bd2c966dabafdc5d643934953a6f (patch)
tree34db534aac813a5b2e8b220978d19158e4270b5d /Makefile
parent201639b58bf8b6c3ebbed8c33778c9c9c0a691ce (diff)
Added option to CPU DSL to produce a threaded interpreter using computed goto
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 1bc741d..4a3d8f2 100644
--- a/Makefile
+++ b/Makefile
@@ -302,7 +302,7 @@ vos_prog_info : vos_prog_info.o vos_program_module.o
$(CC) -o vos_prog_info vos_prog_info.o vos_program_module.o
%.c : %.cpu
- ./cpu_dsl.py $< > $@
+ ./cpu_dsl.py -d goto $< > $@
%.o : %.S
$(CC) -c -o $@ $<