Skip to content

Commit 9dd0c6a

Browse files
committed
fix error msg phrasing
1 parent c0427f5 commit 9dd0c6a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/peakrdl_regblock/exporter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ def export(self, node: Union[RootNode, AddrmapNode], output_dir:str, **kwargs: A
137137
addr_width = self.top_node.size.bit_length()
138138
if user_addr_width is not None:
139139
if user_addr_width < addr_width:
140-
msg.fatal(f"User-specified address width shall be greater than {addr_width}.")
140+
msg.fatal(f"User-specified address width shall be greater than or equal to {addr_width}.")
141141
addr_width = user_addr_width
142142

143143
# Scan the design for pre-export information

0 commit comments

Comments
 (0)