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