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