mirror of
https://github.com/YosysHQ/yosys
synced 2026-03-19 11:33:11 +00:00
19 lines
353 B
Text
19 lines
353 B
Text
module \test
|
|
wire input 1 \clk
|
|
wire output 2 \a
|
|
wire output 3 \b
|
|
cell $dff \myff_a
|
|
parameter \WIDTH 1
|
|
parameter \CLK_POLARITY 1'1
|
|
connect \D \a
|
|
connect \Q \a
|
|
connect \CLK \clk
|
|
end
|
|
cell $dff \myff_b
|
|
parameter \WIDTH 1
|
|
parameter \CLK_POLARITY 1'1
|
|
connect \D \b
|
|
connect \Q \b
|
|
connect \CLK \clk
|
|
end
|
|
end
|