ttl-fpga/sw/kousaten/src/fpga_cell_lut34.c

16 lines
337 B
C

#include "fpga_cell_lut34.h"
#include <stdlib.h>
struct fpga_cell_lut34 *fpga_cell_lut_34_new()
{
struct fpga_cell_lut34 *fpga_cell_lut_34;
fpga_cell_lut_34 = malloc(sizeof(struct fpga_cell_lut34));
if (fpga_cell_lut_34) {
fpga_cell_init(FPGA_TO_CELL(fpga_cell_lut_34),
FPGA_CELL_LUT34);
}
return fpga_cell_lut_34;
}