[Benchmark] Add microbenchmark 1-bit blinking

This commit is contained in:
tangxifan 2021-05-06 15:17:27 -06:00
parent f77b81fe5b
commit 16fff90607
1 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,17 @@
// ------------------------------
// Design Name: Blinking
// Functionality: 1-bit blinking
// ------------------------------
module blinking(
clk,
out
);
input clk;
output out;
always @(posedge clk) begin
out = ~out;
end
endmodule