diff options
| author | Kimplul <kimi.h.kuparinen@gmail.com> | 2025-12-15 01:25:53 +0200 |
|---|---|---|
| committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2025-12-15 01:25:53 +0200 |
| commit | 452cab52de2107c1ce8c7eb0883ff80bb80ac76b (patch) | |
| tree | cf36cb3c289dde79525ff3d9e9d109b7677ce6d0 /tests/simt_riscv64/source.mk | |
| parent | 1955ad196b76e6fa928af38ca7a7c32106ac44da (diff) | |
| download | gran-452cab52de2107c1ce8c7eb0883ff80bb80ac76b.tar.gz gran-452cab52de2107c1ce8c7eb0883ff80bb80ac76b.zip | |
add initial simt rv64 core
Diffstat (limited to 'tests/simt_riscv64/source.mk')
| -rw-r--r-- | tests/simt_riscv64/source.mk | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/simt_riscv64/source.mk b/tests/simt_riscv64/source.mk new file mode 100644 index 0000000..e12420b --- /dev/null +++ b/tests/simt_riscv64/source.mk @@ -0,0 +1,11 @@ +SIMT_RISCV64 := tests/simt_riscv64 +SIMT_RISCV64_SIM := $(SIMT_RISCV64)/sim.c + +TESTS += $(SIMT_RISCV64)/sim + +.PHONY: $(SIMT_RISCV64)/sim +$(SIMT_RISCV64)/sim: $(SIMT_RISCV64_SIM) libgran.a + mkdir -p build/$(SIMT_RISCV64) + ./scripts/gen-rv64-fw -d build -o $(SIMT_RISCV64)/test.inc $(SIMT_RISCV64)/test.c + $(COMPILE_TEST) $(SIMT_RISCV64_SIM) libgran.a -o build/$@ + ./scripts/gen-report -d build $@ |
