diff options
Diffstat (limited to 'isa/Makefile')
| -rw-r--r-- | isa/Makefile | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/isa/Makefile b/isa/Makefile index 415778e..7ffe93e 100644 --- a/isa/Makefile +++ b/isa/Makefile @@ -5,10 +5,14 @@ isa_src_dir := . include $(isa_src_dir)/rv64ui/Makefrag +include $(isa_src_dir)/rv64um/Makefrag +include $(isa_src_dir)/rv64ua/Makefrag include $(isa_src_dir)/rv64uf/Makefrag include $(isa_src_dir)/rv64si/Makefrag include $(isa_src_dir)/rv64mi/Makefrag include $(isa_src_dir)/rv32ui/Makefrag +include $(isa_src_dir)/rv32um/Makefrag +include $(isa_src_dir)/rv32ua/Makefrag include $(isa_src_dir)/rv32si/Makefrag include $(isa_src_dir)/rv32mi/Makefrag @@ -73,11 +77,25 @@ tests += $$($(1)_tests) endef $(eval $(call compile_template,rv32ui,-m32)) +ifeq ($(TEST_ENABLE_M),yes) +$(eval $(call compile_template,rv32um,-m32)) +endif +ifeq ($(TEST_ENABLE_A),yes) +$(eval $(call compile_template,rv32ua,-m32)) +endif $(eval $(call compile_template,rv32si,-m32)) $(eval $(call compile_template,rv32mi,-m32)) ifeq ($(XLEN),64) $(eval $(call compile_template,rv64ui)) +ifeq ($(TEST_ENABLE_M),yes) +$(eval $(call compile_template,rv64um)) +endif +ifeq ($(TEST_ENABLE_A),yes) +$(eval $(call compile_template,rv64ua)) +endif +ifeq ($(TEST_ENABLE_F),yes) $(eval $(call compile_template,rv64uf)) +endif $(eval $(call compile_template,rv64si)) $(eval $(call compile_template,rv64mi)) endif |
