Skip to content

Commit ab8d16f

Browse files
committed
Remove overly-strict validation check on sw=w;hw=na;. #155
1 parent df5b227 commit ab8d16f

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

systemrdl/core/validate.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -342,12 +342,6 @@ def enter_Field(self, node: FieldNode) -> None:
342342
% (node.inst_name),
343343
node.inst.inst_src_ref
344344
)
345-
elif (this_f_sw == rdltypes.AccessType.w) and (this_f_hw == rdltypes.AccessType.na):
346-
self.msg.error(
347-
"Field '%s' access property combination is meaningless: sw=w; hw=na;"
348-
% (node.inst_name),
349-
node.inst.inst_src_ref
350-
)
351345
elif this_f_sw == rdltypes.AccessType.na:
352346
self.msg.error(
353347
"Field '%s' sw access property is 'na' ... a field defined in a SOFTWARE "

0 commit comments

Comments
 (0)