Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
4a79a47b7dd03dd4b2776ee40322b0149935d234
/
.
/
src
/
Testcases
/
YosysTests
/
misc
/
check_error
/
top.v
blob: de944d30b66f95444c92a80afc4bc8d6d89454f1 [
file
] [
log
] [
blame
]
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