Skip to content

Commit

Permalink
deprecate bmss
Browse files Browse the repository at this point in the history
  • Loading branch information
Jian Weng committed Nov 18, 2021
1 parent c9225de commit e03c0e9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion auto-patch.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ def gather_lines(a, cond):
for i, j in enumerate(a):
if cond(j):
res.append(i)
assert res[-1] - res[0] + 1 == len(res), 'Range not continuous'
print(res)
assert res[-1] - res[0] + 1 == len(res), (f'Range not continuous {res}')
return res[0], res[-1]

with open(sys.argv[1]) as f:
Expand Down
2 changes: 1 addition & 1 deletion rf.def
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ MACRO(ILV) // Indirect Length of Value stream
MACRO(BR) // allocated Buffet address Range encoded in 32 bits
MACRO(BSR) // Buffet State Register encodes buffet configuration info in 32 bits
MACRO(OFL) // OFfset List (up to 4) accessed by an indirect stream
MACRO(BMSS) // The BitMask of Stream Status.
MACRO(RESERVED0)
MACRO(RESERVED1)
MACRO(RESERVED2)
MACRO(RESERVED3)
MACRO(RESERVED4)
MACRO(RESERVED5)
MACRO(RESERVED6)
MACRO(RESERVED7)
MACRO(TOTAL_REG)

0 comments on commit e03c0e9

Please sign in to comment.