Hi, is it possible to create Sky130 memories with ...
# sky130
d
Hi, is it possible to create Sky130 memories with OpenRAM with just one port? I am trying to create them but I'm getting this error: ERROR: file sram_config.py: line 146: Invalid number of cols including rbl(s): 65. Total cols must be divisible by 2 debug.error("Invalid number of cols including rbl(s): {}. Total cols must be divisible by {}".format(self.num_cols + num_ports + self.num_spare_cols, self.array_col_multiple), -1)
d
@David Merino Gallardo It looks like you've run into a limitation of the SRAM. The columns must be divisible by two. You have them set to 65 in your config file. Change that to 64 and retry.