Guest
#5637985
Hi all. I have question. my code is module pulsing(OUT, an1, an2, or1); input wire an1, an2, or1; output wire OUT; wire afa; and andik(afa,an1,an2); or orik(OUT,afa,or1); endmodule I got after synthesis one 3bit LUT result, but I really need 2 different LUTS . How can I implement it without any sequential logic(just wires and LUTs)? Thanks!