An Article

1 min read
misc

This is a test post used to verify that all features of the blog system are working correctly.

Article Content

Here is the main body of the article. Markdown supports the following features:

Code Block

module counter(
    input clk,
    input rst,
    output reg [7:0] count
);

always @(posedge clk or posedge rst) begin
    if (rst)
        count <= 8'b0;
    else
        count <= count + 1;
end

endmodule

List

  • Item 1
  • Item 2
  • Item 3

Quote

This is a quoted passage.

Back to blog list


Thanks for reading!