Skip to content

Commit

Permalink
some fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
xtofalex committed Nov 7, 2023
1 parent c6901c4 commit ad88817
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ void addAssign(const Identifiers& identifiers, const Expression& expression)
is called for each assign statement, facilitating the capture of signal assignments.
In Following verilog snippets, the corresponding constructed data stuctures are detailed in pseudo C++ code.
Below are Verilog examples followed by pseudo C++ representations of the data structures that might be constructed by this callback.
```verilog
assign n0 = n1;
Expand Down Expand Up @@ -344,6 +344,8 @@ mod1 inst4(net4[7:10], {net0, net1, net2, net3});
void addParameterAssignment(const std::string& parameterName, const Expression& expression);
```
This callback function is designed to handle parameter assignments within module instantiations.
```verilog
module test();
mod #(
Expand Down

0 comments on commit ad88817

Please sign in to comment.