Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
6974ffc5ed0bd5daee67697a11331c4ec2ca9f1e
/
.
/
SVIncCompil
/
Testcases
/
YosysTests
/
misc
/
check
/
top1.v
blob: de944d30b66f95444c92a80afc4bc8d6d89454f1 [
file
]
module
top
(
input d
,
clk
,
output reg q
);
wire u
;
wire s
;
assign u
=
s
;
assign u
=
d
;
assign u
=
clk
;
always
@(
posedge clk
)
q
<=
u
;
endmodule