mirror of
https://github.com/YosysHQ/yosys
synced 2025-11-12 17:11:16 +00:00
timeest: Add top ports launching/sampling
This commit is contained in:
parent
d0a41d4f58
commit
5fa7feccd3
2 changed files with 52 additions and 15 deletions
12
tests/various/timeest.ys
Normal file
12
tests/various/timeest.ys
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
read_verilog <<EOF
|
||||
module top(input [3:0] a, input [3:0] b, output [7:0] y);
|
||||
assign y = a * b;
|
||||
endmodule
|
||||
|
||||
module top2(input [7:0] a, input [7:0] b, output [15:0] y);
|
||||
assign y = a * b;
|
||||
endmodule
|
||||
EOF
|
||||
|
||||
synth
|
||||
timeest
|
||||
Loading…
Add table
Add a link
Reference in a new issue