[Benchmark] Add microbenchmark 1-bit blinking
This commit is contained in:
parent
f77b81fe5b
commit
16fff90607
|
@ -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
|
Loading…
Reference in New Issue