bump py versions
This commit is contained in:
@@ -194,7 +194,7 @@ class DecodeLogicGenerator(RDLForLoopGenerator):
|
||||
n_subwords = regwidth // accesswidth
|
||||
subword_stride = accesswidth // 8
|
||||
for i in range(n_subwords):
|
||||
rhs = f"cpuif_req_masked & (cpuif_addr == {self._get_address_str(node, subword_offset=(i*subword_stride))})"
|
||||
rhs = f"cpuif_req_masked & (cpuif_addr == {self._get_address_str(node, subword_offset=i*subword_stride)})"
|
||||
s = f"{self.addr_decode.get_access_strobe(node)}[{i}] = {rhs};"
|
||||
self.add_content(s)
|
||||
if node.external:
|
||||
|
||||
@@ -50,7 +50,7 @@ class StickyWEL(Sticky, WELWrite):
|
||||
|
||||
class StickybitWE(Stickybit, WEWrite):
|
||||
"""
|
||||
Normal stickybiti with write enable
|
||||
Normal stickybit with write enable
|
||||
"""
|
||||
comment = "stickybit with WE"
|
||||
def is_match(self, field: 'FieldNode') -> bool:
|
||||
|
||||
Reference in New Issue
Block a user