summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Andrew Waterman <waterman@cs.berkeley.edu>2015-09-28 11:53:07 -0700
committerGravatar Andrew Waterman <waterman@cs.berkeley.edu>2015-09-28 11:53:07 -0700
commit2669f5ed5520442657ed3ad1327b37e1cc933fec (patch)
tree66efc27b55293550c30efa6bc5d489a5b31ade2b
parent369da99529a022506f1492d6d2c8dae6af28f7d5 (diff)
Include pseudo-ops in inst.chisel
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 2d5878b..658805b 100644
--- a/Makefile
+++ b/Makefile
@@ -13,7 +13,7 @@ install: $(ISASIM_H) $(PK_H) $(FESVR_H) $(ENV_H) $(GAS_H) inst.chisel instr-tabl
$(ISASIM_H) $(PK_H) $(FESVR_H) $(ENV_H): $(ALL_OPCODES) parse-opcodes encoding.h
cp encoding.h $@
- cat opcodes opcodes-rvc opcodes-rvc-pseudo | ./parse-opcodes -c >> $@
+ cat opcodes opcodes-rvc-pseudo opcodes-rvc | ./parse-opcodes -c >> $@
$(GAS_H) $(XCC_H): $(ALL_OPCODES) parse-opcodes
cat $(ALL_OPCODES) | ./parse-opcodes -c > $@
@@ -24,7 +24,7 @@ $(ISASIM_HWACHA_H): $(ALL_OPCODES) parse-opcodes
cpp -P -D DECLARE_INSN=DECLARE_INSN | sort -o $@
inst.chisel: $(ALL_OPCODES) parse-opcodes
- cat opcodes opcodes-custom | ./parse-opcodes -chisel > $@
+ cat opcodes opcodes-custom opcodes-pseudo | ./parse-opcodes -chisel > $@
instr-table.tex: $(ALL_OPCODES) parse-opcodes
cat opcodes opcodes-pseudo | ./parse-opcodes -tex > $@