aboutsummaryrefslogtreecommitdiff
path: root/parse.py
diff options
context:
space:
mode:
authorNeel Gala <neelgala@incoresemi.com>2022-04-08 22:19:32 +0530
committerNeel Gala <neelgala@incoresemi.com>2022-04-08 22:19:32 +0530
commit1ad98bac0c4e0264b962e95f4b52a2591ba8ec74 (patch)
treed7addffd4c983373beb2fa63d091a96781f2f97b /parse.py
parent5fae476896a34bc56c034d5a1ba453ab86ebfe48 (diff)
downloadriscv-opcodes-1ad98bac0c4e0264b962e95f4b52a2591ba8ec74.zip
riscv-opcodes-1ad98bac0c4e0264b962e95f4b52a2591ba8ec74.tar.gz
riscv-opcodes-1ad98bac0c4e0264b962e95f4b52a2591ba8ec74.tar.bz2
pass only fence_tso and pause to rv32i latex table
Diffstat (limited to 'parse.py')
-rwxr-xr-xparse.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/parse.py b/parse.py
index 970c29d..4ae4a51 100755
--- a/parse.py
+++ b/parse.py
@@ -409,7 +409,8 @@ def make_latex_table():
# instructions listed in list_of_instructions will be dumped into latex.
caption = ''
type_list = ['R-type','I-type','S-type','B-type','U-type','J-type']
- dataset_list = [(['_i','32_i'], 'RV32I Base Instruction Set', [], True)]
+ dataset_list = [(['_i','32_i'], 'RV32I Base Instruction Set', [], False)]
+ dataset_list.append((['_i'], '', ['fence_tso','pause'], True))
make_ext_latex_table(type_list, dataset_list, latex_file, 32, caption)
type_list = ['R-type','I-type','S-type']