and here is my config ```word_size = 16 # Bits num...
# openram
p
and here is my config
Copy code
word_size = 16 # Bits
num_words = 49152
human_byte_size = "{:.0f}kbytes".format((word_size * num_words)/1024/8)

tech_name = "sky130"
nominal_corner_only = True
process_corners = ["TT"]
supply_voltages = [1.8]
temperatures = [0, 25, 100]

output_path = "macros"
output_name = "sky130_sram_96kbyte_1r1w_16x49152_8"

# Allow byte writes
write_size = 16 # Bits

# Dual port
num_rw_ports = 0
num_r_ports = 1
num_w_ports = 1
ports_human = '1r1w'

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