mirror of https://github.com/VLSIDA/OpenRAM.git
Skip graph exclusions on memchar
This commit is contained in:
parent
56879bf48b
commit
eceb35f205
|
|
@ -493,11 +493,12 @@ class simulation():
|
||||||
|
|
||||||
# other initializations can only be done during analysis when a bit has been selected
|
# other initializations can only be done during analysis when a bit has been selected
|
||||||
# for testing.
|
# for testing.
|
||||||
self.sram.bank.graph_exclude_precharge()
|
if OPTS.top_process != 'memchar':
|
||||||
self.sram.graph_exclude_addr_dff()
|
self.sram.bank.graph_exclude_precharge()
|
||||||
self.sram.graph_exclude_data_dff()
|
self.sram.graph_exclude_addr_dff()
|
||||||
self.sram.graph_exclude_ctrl_dffs()
|
self.sram.graph_exclude_data_dff()
|
||||||
self.sram.bank.bitcell_array.graph_exclude_replica_col_bits()
|
self.sram.graph_exclude_ctrl_dffs()
|
||||||
|
self.sram.bank.bitcell_array.graph_exclude_replica_col_bits()
|
||||||
|
|
||||||
def set_internal_spice_names(self):
|
def set_internal_spice_names(self):
|
||||||
"""
|
"""
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue