aboutsummaryrefslogtreecommitdiff
path: root/parse.py
diff options
context:
space:
mode:
authorAndrew Waterman <andrew@sifive.com>2024-05-01 01:38:01 -0700
committerAndrew Waterman <andrew@sifive.com>2024-05-01 01:46:31 -0700
commit09879e6b56714aa705aa67705b1ccb215be427e5 (patch)
tree9d881f0ba42e6d710a226c00b7879a1b2b8ab883 /parse.py
parentba462efa5abc16469bc2c621f6b7c419a962f4b8 (diff)
downloadriscv-opcodes-09879e6b56714aa705aa67705b1ccb215be427e5.zip
riscv-opcodes-09879e6b56714aa705aa67705b1ccb215be427e5.tar.gz
riscv-opcodes-09879e6b56714aa705aa67705b1ccb215be427e5.tar.bz2
Remove RV128 for now
It is highly speculative at this point, but it adds maintenance burden.
Diffstat (limited to 'parse.py')
-rwxr-xr-xparse.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/parse.py b/parse.py
index 1c41d9c..98e06a6 100755
--- a/parse.py
+++ b/parse.py
@@ -756,9 +756,7 @@ def make_chisel(instr_dict, spinal_hdl=False):
extensions = instr_dict_2_extensions(instr_dict)
for e in extensions:
e_instrs = filter(lambda i: instr_dict[i]['extension'][0] == e, instr_dict)
- if "rv128_" in e:
- e_format = e.replace("rv128_", "").upper() + "128"
- elif "rv64_" in e:
+ if "rv64_" in e:
e_format = e.replace("rv64_", "").upper() + "64"
elif "rv32_" in e:
e_format = e.replace("rv32_", "").upper() + "32"