VLSItemplate: Difference between revisions
From Antalya
(Created page with "{{VLSInavbar}} <div class="jumbotron jumbotron-fluid"> <ul> ==Open Source VLSI Design== These pages support the VLSI design activities at [https://www.ethz.ch ETH Zürich] relying on ''mainly'' open source EDA design tools. </ul> </div> <div class="alert alert-danger" role="alert"> At the moment This page is a '''trial''' page for styles. It will get updated soon </div> ---- === Image trials === {{VLSIfigure|ex2_openroad_croc.png|This is an example caption|1}} ----...") |
No edit summary |
||
Line 37: | Line 37: | ||
endmodule | endmodule | ||
</syntaxhighlight> | </syntaxhighlight> | ||
{{VLSItaskhead|12}} | |||
* A typical student task | |||
{{VLSItaskfoot}} | |||
Some inline code <code>always_ff</code> or more prominent press <kbd>Shift-F</kbd> | Some inline code <code>always_ff</code> or more prominent press <kbd>Shift-F</kbd> |
Latest revision as of 09:23, 18 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.
At the moment This page is a trial page for styles.
It will get updated soon
Image trials
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
Student Task 12
- A typical student task
Some inline code always_ff
or more prominent press Shift-F
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
The VLSI pages are part of the open source VLSI design course offered by the Integrated Systems Laboratory of ETH Zürich, by Luca Benini and Frank K. Gürkaynak. See full list of contributors.