Hello, I'm trying to create sram for my cache memo...
# openram
p
Hello, I'm trying to create sram for my cache memory. It has rather uncommon size of 128 bits x 32 words. I used modified config from macros directory:
Copy code
word_size = 128 # Bits
num_words = 32
human_byte_size = "{:.0f}kbytes".format((word_size * num_words)/1024/8)

write_size = 128 # Bits
num_rw_ports = 1
num_r_ports = 0
num_w_ports = 0
ports_human = '1rw'

num_spare_cols = 1
num_spare_rows = 1

import os
exec(open(os.path.join(os.path.dirname(__file__), 'sky130_sram_common.py')).read())