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