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