Sign in
foss-fpga-tools
/
prjtrellis
/
8b7845f8036d3e73fbc82cb3ed4f34e95db0a17e
/
.
/
minitests
/
reg
/
lut_reg.v
blob: 50e7fc264a132afd7f91379ef73f17407afc9a4b [
file
]
module
top
(
input clk
,
input a
,
output reg q
);
always
@(
posedge clk
)
q
<=
~
a
;
endmodule