Sign in
foss-fpga-tools
/
prjtrellis
/
6bac5f022dd45d5588640c7567714e2fb3c25f98
/
.
/
minitests
/
lut
/
lut5_reg.v
blob: 2c7b45c8b09871c21bda8062e462b4e0466947aa [
file
] [
log
] [
blame
]
module
top
(
input a
,
input b
,
input c
,
input d
,
input e
,
input clk
,
output reg q
);
wire q_in
;
LUT5
#(.init (32'hF4444)) I1 ( .A (a), .B (b), .C (c), .D (d), .E (e), .Z (q_in) );
always
@(
posedge clk
)
begin
q
<=
q_in
;
end
endmodule