mirror of
https://github.com/YosysHQ/yosys
synced 2025-08-30 15:00:26 +00:00
cxxrtl: WIP: adjust comb display cells to only fire on change
Naming and use of statics to be possibly revised.
This commit is contained in:
parent
7f7c61c9f0
commit
843ad9331b
8 changed files with 95 additions and 16 deletions
8
tests/fmt/always_comb_tb.v
Normal file
8
tests/fmt/always_comb_tb.v
Normal file
|
@ -0,0 +1,8 @@
|
|||
module tb;
|
||||
reg clk = 0;
|
||||
|
||||
top uut (.clk(clk));
|
||||
|
||||
always #1 clk <= ~clk;
|
||||
initial #20 $finish;
|
||||
endmodule
|
Loading…
Add table
Add a link
Reference in a new issue