-
Notifications
You must be signed in to change notification settings - Fork 68
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3941 from alainmarcel/alainmarcel-patch-1
Unbound for loop support
- Loading branch information
Showing
9 changed files
with
903 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -208,7 +208,7 @@ design: (work@test) | |
|vpiName:foo | ||
|vpiFullName:[email protected] | ||
|vpiActual: | ||
\_logic_net: (work@test.foo), line:10:5, endln:10:8 | ||
\_parameter: (foo), line:1:15, endln:1:18 | ||
|vpiOperand: | ||
\_constant: , line:10:12, endln:10:20 | ||
|vpiParent: | ||
|
@@ -244,7 +244,7 @@ design: (work@test) | |
|vpiName:foo2 | ||
|vpiFullName:[email protected] | ||
|vpiActual: | ||
\_logic_net: (work@test.foo2), line:15:5, endln:15:9 | ||
\_parameter: (foo2), line:2:15, endln:2:19 | ||
|vpiOperand: | ||
\_constant: , line:15:13, endln:15:18 | ||
|vpiParent: | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
-parse -d uhdm -synth -d coveruhdm -elabuhdm -d ast dut.sv -nobuiltin |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
module signed_shifter ( | ||
input wire [1:0] i, | ||
output reg signed [3:0] Q ); | ||
integer j; | ||
always @ * begin | ||
for(j=0;j<i;j=j+1) Q = 1'b1; | ||
end | ||
endmodule | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters