-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[WIP] Add ASIC Flow #8
Conversation
5e7ea13
to
a4cad2d
Compare
Signed-off-by: Pawel Czarnecki <[email protected]>
Signed-off-by: Pawel Czarnecki <[email protected]>
Signed-off-by: Pawel Czarnecki <[email protected]>
Add OpenROAD-flow-scripts dependencies Add Makefile targets for simple flow test Signed-off-by: Pawel Czarnecki <[email protected]>
Signed-off-by: Pawel Czarnecki <[email protected]>
Signed-off-by: Pawel Czarnecki <[email protected]>
Add build target and simple verification target for Yosys, Surelog and Yosys Plugins Signed-off-by: Pawel Czarnecki <[email protected]>
Signed-off-by: Pawel Czarnecki <[email protected]>
Add config files for OpenROAD-flow-scripts for implementing physical design in SKY130 and ASAP7 technologies. Signed-off-by: Pawel Czarnecki <[email protected]>
4d15554
to
b9eeb9f
Compare
Signed-off-by: Pawel Czarnecki <[email protected]>
Signed-off-by: Pawel Czarnecki <[email protected]>
70974e9
to
2ae6571
Compare
Signed-off-by: Pawel Czarnecki <[email protected]>
Signed-off-by: Pawel Czarnecki <[email protected]>
Signed-off-by: Pawel Czarnecki <[email protected]>
Signed-off-by: Pawel Czarnecki <[email protected]>
Signed-off-by: Pawel Czarnecki <[email protected]>
Signed-off-by: Pawel Czarnecki <[email protected]>
module counter ( | ||
output reg [10:0] out, | ||
input wire enable, | ||
input wire clk, | ||
input wire reset |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[verible-verilog-format] reported by reviewdog 🐶
module counter ( | |
output reg [10:0] out, | |
input wire enable, | |
input wire clk, | |
input wire reset | |
module counter ( | |
output reg [10:0] out, | |
input wire enable, | |
input wire clk, | |
input wire reset |
input wire clk, | ||
input wire reset | ||
); | ||
always_ff @(posedge clk) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[verible-verilog-format] reported by reviewdog 🐶
always_ff @(posedge clk) | |
always_ff @(posedge clk) |
); | ||
always_ff @(posedge clk) | ||
if (reset) begin | ||
out <= 8'b0 ; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[verible-verilog-format] reported by reviewdog 🐶
out <= 8'b0 ; | |
out <= 8'b0; |
No description provided.