mirror of
https://github.com/YosysHQ/yosys
synced 2025-08-11 05:30:53 +00:00
Merge pull request #1370 from YosysHQ/dave/equiv_opt_multiclock
Add equiv_opt -multiclock
This commit is contained in:
commit
6044fff074
2 changed files with 23 additions and 1 deletions
12
tests/various/equiv_opt_multiclock.ys
Normal file
12
tests/various/equiv_opt_multiclock.ys
Normal file
|
@ -0,0 +1,12 @@
|
|||
read_verilog <<EOT
|
||||
module top(input clk, pre, d, output reg q);
|
||||
always @(posedge clk, posedge pre)
|
||||
if (pre)
|
||||
q <= 1'b1;
|
||||
else
|
||||
q <= d;
|
||||
endmodule
|
||||
EOT
|
||||
|
||||
prep
|
||||
equiv_opt -assert -multiclock -map +/simcells.v synth
|
Loading…
Add table
Add a link
Reference in a new issue