the following line in chip io triggers the following syntax error
genvar i;
generate
for (i = 0; i < MPRJ_IO_PADS; i = i+1) begin
> gf180mcu_fd_io__bi_t mprj_pads[i](
.DVDD(vdd),
.DVSS(vss),
.VDD(vdd),
Error-[ZONVS] Zero or negative value for size /home/rady/caravel/caravel_gf/caravel/verilog/rtl/chip_io.v, 349 chip_io, "genblk1[0].i" Zero or negative value for size is not allowed. Value: 0 Please fix the size value as a positive number.
The rtl utilizes a generate block to connect the io drive selection signals indexes correctly (#124) and the gl is created using yosys (openlane interactive script). The rtl will be updated to directly instantiate the pads
the following line in chip io triggers the following syntax error
Error-[ZONVS] Zero or negative value for size /home/rady/caravel/caravel_gf/caravel/verilog/rtl/chip_io.v, 349 chip_io, "genblk1[0].i" Zero or negative value for size is not allowed. Value: 0 Please fix the size value as a positive number.