Skip to content

Commit a3ac9f4

Browse files
committed
Fix field instances - illegal to declare external. #4
1 parent 74420c9 commit a3ac9f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/peakrdl_systemrdl/rdl_generator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ def enter_Field(self, node: 'FieldNode') -> None:
8686
if isinstance(reset, int):
8787
suffix += f" = 0x{reset:X}"
8888

89-
self.push("field", kwf(node.inst_name), suffix=suffix, is_external=node.external)
89+
self.push("field", kwf(node.inst_name), suffix=suffix)
9090

9191
encode = node.get_property('encode')
9292
if encode is not None:

0 commit comments

Comments
 (0)