Skip to content

Commit

Permalink
Fixing field external property to False.
Browse files Browse the repository at this point in the history
  • Loading branch information
Benoit Denkinger committed May 21, 2024
1 parent 92036db commit 7eab181
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/peakrdl_systemrdl/rdl_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ def enter_Field(self, node: 'FieldNode') -> None:
if isinstance(reset, int):
suffix += f" = 0x{reset:X}"

self.push("field", node.inst_name, suffix=suffix, is_external=node.external)
self.push("field", node.inst_name, suffix=suffix)

encode = node.get_property('encode')
if encode is not None:
Expand Down

0 comments on commit 7eab181

Please sign in to comment.