Skip to content

Commit

Permalink
Remove RV128 for now
Browse files Browse the repository at this point in the history
It is highly speculative at this point, but it adds maintenance burden.
  • Loading branch information
aswaterman committed May 1, 2024
1 parent ba462ef commit 09879e6
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 44 deletions.
3 changes: 0 additions & 3 deletions constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,11 +157,8 @@
'rstsa16',
'rstsa32',
'srli32_u',
'slli_rv128',
'slli_rv32',
'srai_rv128',
'srai_rv32',
'srli_rv128',
'srli_rv32',
'umax32',
'c_mop_1',
Expand Down
4 changes: 1 addition & 3 deletions parse.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
14 changes: 0 additions & 14 deletions unratified/rv128_c

This file was deleted.

24 changes: 0 additions & 24 deletions unratified/rv128_i

This file was deleted.

0 comments on commit 09879e6

Please sign in to comment.