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