Introduction
Important
You can add these type of boxes
The document is written in Markdown format. Markdown is a very simple way to create documents. There are only a few things you need to know to create these documents.
You can find more information on Markdown here: Markdown Cheat Sheet
Images

You can add images by adding html-tags.
Adding a pdf
You can embed a pdf file using this code (make sure you put the pdf also in this folder):
<object data="/RnD_Embed_00_Welcome.pdf?#navpanes=0" type="application/pdf" width="100%" height="680px">
<embed src="/RnD_Embed_00_Welcome.pdf">
<p>This browser does not support PDFs. Please download the PDF to view it: <a href="/RnD_Embed_00_Welcome.pdf">Download PDF</a></p>
</embed>
</object>
Source code
TODO
Maybe add some source code that was not generated by ChatGPT?
// clock_design_and_testbench.sv
module clock_design(input wire clk, output reg [7:0] data);
always @(posedge clk)
data <= data + 1;
endmodule
// testbench.sv
module tb_clock_design();
reg clk;
wire [7:0] data;
clock_design cd (.clk(clk), .data(data));
initial begin
clk = 0;
#10 clk = 1; // toggle clock every 10 time units
#10 $finish;
end
endmodule