// synopsys translate_off `include "C_DIST_MEM_V1_0.v" // synopsys translate_on module lookup_impl(clk,i,out); input clk; input [7:0] i; output [7:0] out; div_lookup div_lookup1 (.A(i),.SPO(out)); endmodule // lookup_impl module div_lookup ( A, SPO); input [7 : 0] A; output [7 : 0] SPO; // synopsys translate_off C_DIST_MEM_V1_0 #( 8, "0", 256, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, "div_lookup.mif", 1, 0, 0, 0, 1, 0, 1, 0, 0, 8) inst ( .A(A), .SPO(SPO)); // synopsys translate_on endmodule // div_lookup2