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