VLSI: Difference between revisions
From Antalya
No edit summary |
|||
Line 34: | Line 34: | ||
<div class="card"> | <div class="card"> | ||
<h4 class="card-header"> | <h4 class="card-header"> | ||
Learning goals | |||
</h4> | </h4> | ||
<div class="card-body"> | <div class="card-body"> |
Revision as of 09:23, 5 August 2024
Open Source VLSI Design
These pages support the VLSI design activities at ETH Zürich relying on mainly open source EDA design tools.
Code example
module test (input logic data_in_i,
input logic clk_ci,
input logic rst_ni,
output logic [7:0] output_o);
// body of module
always_ff (@posedge clk_ci, @negedge rst_ni) begin
if (rst_ni ==1'b0) begin //active_low reset
output_o = 8'b0;
end else begin
output_o = {8{data_in_i}};
end
end
endmodule
Some inline code always_ff
or more prominent always_comb
Some row examples
Learning goals
Example text
Header
Some quick example text to build on the card title and make up the bulk of the card's content.
Uneven distribution
of columns