Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
356a4bf2123fc606ca19fbed9b9c535f149fdec5
/
.
/
SVIncCompil
/
Testcases
/
YosysTests
/
regression
/
issue_01040
/
top.v
blob: 660f46ab8a1bfc8fcfc010a6ee80c45cba109aea [
file
] [
log
] [
blame
]
module
dut_sub
(
input clk
,
input
[
32
:
2
]
a
,
output
[
32
:
2
]
a_l
);
always
@(
posedge clk
)
a_l
<=
a
;
endmodule
// dut_sub
module
dut
(
input clk
,
input
[
32
:
2
]
a
,
output
[
32
:
2
]
a_l
);
dut_sub
sub
(.
clk
(
clk
),
.
a
(
a
),
.
a_l
(
a_l
));
endmodule
// dut