mirror of https://github.com/VLSIDA/OpenRAM.git
Use internal pin names in path names for signal traces.
This commit is contained in:
parent
fbed738b4a
commit
35c162acbd
|
|
@ -377,7 +377,7 @@ class layout():
|
|||
"""
|
||||
Return a pin list of all pins
|
||||
"""
|
||||
return self.pin_map.keys()
|
||||
return self.pins
|
||||
|
||||
def copy_layout_pin(self, instance, pin_name, new_name=""):
|
||||
"""
|
||||
|
|
|
|||
|
|
@ -91,7 +91,7 @@ class bitcell_2port(bitcell_base.bitcell_base):
|
|||
def build_graph(self, graph, inst_name, port_nets):
|
||||
"""Adds edges to graph. Multiport bitcell timing graph is too complex
|
||||
to use the add_graph_edges function."""
|
||||
pin_dict = {pin: port for pin, port in zip(self.pin_names, port_nets)}
|
||||
pin_dict = {pin: port for pin, port in zip(self.get_original_pin_names(), port_nets)}
|
||||
# Edges hardcoded here. Essentially wl->bl/br for both ports.
|
||||
# Port 0 edges
|
||||
graph.add_edge(pin_dict["wl0"], pin_dict["bl0"], self)
|
||||
|
|
|
|||
Loading…
Reference in New Issue