VLSI: Difference between revisions
From Antalya
No edit summary |
|||
Line 6: | Line 6: | ||
</div> | </div> | ||
---- | ---- | ||
=== Trial=== | |||
<div class="alert alert-success" role="alert">...</div> | |||
<div class="alert alert-danger" role="alert"> Hello this is ''bad'' And this is a [[Unix|link]] </div> | |||
<div class="btn-group" role="group" aria-label="..."> | |||
<button type="button" class="btn btn-default">Left</button> | |||
<button type="button" class="btn btn-default">Middle</button> | |||
<button type="button" class="btn btn-default">Right</button> | |||
</div> | |||
===Code example=== | ===Code example=== | ||
<syntaxhighlight lang="verilog"> | <syntaxhighlight lang="verilog"> | ||
Line 26: | Line 35: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
Some inline code <code>always_ff</code> or more prominent <kbd> | Some inline code <code>always_ff</code> or more prominent press <kbd>Shift F</kbd> | ||
---- | ---- | ||
===Some row examples=== | ===Some row examples=== | ||
Line 61: | Line 70: | ||
</div> | </div> | ||
</div> | </div> | ||
[[Category:VLSI]] | [[Category:VLSI]] |
Revision as of 09:49, 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.
Trial
...
Hello this is bad And this is a link
<button type="button" class="btn btn-default">Left</button> <button type="button" class="btn btn-default">Middle</button> <button type="button" class="btn btn-default">Right</button>
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 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