aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Waterman <andrew@sifive.com>2025-09-03 19:30:49 -0700
committerGitHub <noreply@github.com>2025-09-03 19:30:49 -0700
commit74c115829aba796fb1680557d2bf920dbcb918bc (patch)
treee2856b962231c22ca6421dff7d4767a07e1b283a
parentddba97b829331949904de0ab89e34cb0e63cbf29 (diff)
downloadriscv-opcodes-master.zip
riscv-opcodes-master.tar.gz
riscv-opcodes-master.tar.bz2
Fix generation of encoding.out.h (#368)HEADmaster
The SVG generation in #364 broke this in a surprising way (though #364 really is not to blame). The addition of a file in the root directory that began with `rv` caused the Make rule to glob that file, rather than passing the string `rv*` through to `parse.py`.
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index a6ea5db..ceb6799 100644
--- a/Makefile
+++ b/Makefile
@@ -18,7 +18,7 @@ everything:
@./parse.py $(PSEUDO_FLAG) -c -go -chisel -sverilog -rust -latex -spinalhdl $(EXTENSIONS)
encoding.out.h:
- @./parse.py -c $(PSEUDO_FLAG) rv* unratified/rv_* unratified/rv32* unratified/rv64*
+ @./parse.py -c $(PSEUDO_FLAG) $(EXTENSIONS)
inst.chisel:
@./parse.py -chisel $(PSEUDO_FLAG) $(EXTENSIONS)