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