Skip to content

Commit

Permalink
use correct method
Browse files Browse the repository at this point in the history
  • Loading branch information
xtofalex committed Apr 2, 2024
1 parent c48dc99 commit 89ce40b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/VerilogParser.yy
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ port_declaration: port_type_io range.opt identifier {
internal_ports_declaration: port_type_io range.opt list_of_identifiers {
constructor->setCurrentLocation(@$.begin.line, @$.begin.column);
for (auto portIdentifier: $3) {
constructor->internalModuleInterfaceCompletePort(Port(portIdentifier, $1, $2));
constructor->internalModuleImplementationPort(Port(portIdentifier, $1, $2));
}
}

Expand Down

0 comments on commit 89ce40b

Please sign in to comment.