Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
refs/heads/mithro-patch-1
/
.
/
SVIncCompil
/
Testcases
/
YosysTests
/
misc
/
check
/
top1.v
blob: de944d30b66f95444c92a80afc4bc8d6d89454f1 [
file
] [
log
] [
blame
] [
edit
]
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