Sign in
foss-fpga-tools
/
prjtrellis
/
2f06397673bbca3da11928d538b8ab7d01c944c6
/
.
/
minitests
/
lut
/
lut4_reg.v
blob: 8994d7caf1d8edb038fef04c08dc6e7d70f34f57 [
file
] [
log
] [
blame
]
module
top
(
input a
,
input b
,
input c
,
input d
,
input clk
,
output reg q
);
wire q_in
;
LUT4
#(.init (32'hF444)) I1 ( .A (a), .B (b), .C (c), .D (d), .Z (q_in) );
always
@(
posedge clk
)
begin
q
<=
q_in
;
end
endmodule