Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
refs/heads/mithro-patch-1
/
.
/
SVIncCompil
/
Testcases
/
YosysTests
/
misc
/
plugin
/
top.v
blob: d57c8c97cd6e898377312f5d0413c27c66b3d99f [
file
] [
log
] [
blame
] [
edit
]
module
top
(
input d
,
clk
,
output reg q
);
always
@(
posedge clk
)
q
<=
d
;
endmodule