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