-
Notifications
You must be signed in to change notification settings - Fork 248
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
24 additions
and
6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
.pioenvs | ||
*.v | ||
*.pcf | ||
*.out | ||
*.asc | ||
*.bin | ||
*.blif |
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 |
---|---|---|
@@ -1 +1 @@ | ||
{"nodes":[],"connections":[]} | ||
{"nodes":[{"name":"","type":"driver0","value":0,"inline":"assign o0 = 1'b0;","id":11,"x":235,"y":151,"width":50,"outputConnectors":[{"name":"\"0\""}]},{"name":"","type":"output","value":"95","id":12,"x":403,"y":111,"width":60,"inputConnectors":[{"name":"95"}]},{"name":"","type":"output","value":"96","id":13,"x":396,"y":217,"width":60,"inputConnectors":[{"name":"96"}]}],"connections":[{"source":{"nodeID":11,"connectorIndex":0},"dest":{"nodeID":12,"connectorIndex":0}},{"source":{"nodeID":11,"connectorIndex":0},"dest":{"nodeID":13,"connectorIndex":0}}]} |
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
set_io output12 95 | ||
set_io output13 96 |
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 |
---|---|---|
@@ -1,4 +1,16 @@ | ||
// Generated verilog | ||
|
||
module main(); | ||
module driver0x(output o0); | ||
assign o0 = 1'b0; | ||
endmodule | ||
|
||
module main(output output12, output13); | ||
wire w0; | ||
wire w1; | ||
assign output12 = w0; | ||
assign output13 = w1; | ||
assign w0 = w1; | ||
driver0x driver011 ( | ||
.o0(w0) | ||
); | ||
endmodule |