Sign in
foss-fpga-tools
/
prjtrellis
/
5bdc3aa8858f25253ec007b13da3ff6ef136999d
/
.
/
minitests
/
reg
/
plain.v
blob: 1d7b658be8a5a76fae494b648857d54432501a08 [
file
]
module
top
(
input clk
,
input d
,
output reg q
);
always
@(
posedge clk
)
q
<=
d
;
endmodule