Skip to content

Commit

Permalink
Fix tbinfo assembly parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
berkayurun authored and aewag committed Nov 13, 2023
1 parent 055a026 commit 5f03011
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion goldenrun.py
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ def generate_wildcard_faults(fault, tbexec, tbinfo):
tb_info_total_size = tbinfo_tb_indexed.at[tb, "size"]

tb_info_asm = [
int(instr.split("]")[0], 16) for instr in tb_info_asm.split("[")[1:]
int(instr.split("]")[0], 16) for instr in tb_info_asm.split("[ ")[1:]
]
tb_info_size = list(numpy.diff(tb_info_asm))
tb_info_size.append(
Expand Down

0 comments on commit 5f03011

Please sign in to comment.