2020-05-27 20:03:11 -07:00
|
|
|
# See LICENSE for licensing information.
|
|
|
|
|
#
|
2024-01-03 14:32:44 -08:00
|
|
|
# Copyright (c) 2016-2024 Regents of the University of California and The Board
|
2020-05-27 20:03:11 -07:00
|
|
|
# of Regents for the Oklahoma Agricultural and Mechanical College
|
|
|
|
|
# (acting for and on behalf of Oklahoma State University)
|
|
|
|
|
# All rights reserved.
|
|
|
|
|
#
|
2022-11-27 13:01:20 -08:00
|
|
|
from openram import debug
|
|
|
|
|
from openram.tech import cell_properties as props
|
2022-07-13 10:57:56 -07:00
|
|
|
from .bitcell_base import bitcell_base
|
2020-05-27 20:03:11 -07:00
|
|
|
|
|
|
|
|
|
2022-07-13 10:57:56 -07:00
|
|
|
class col_cap_bitcell_2port(bitcell_base):
|
2020-05-27 20:03:11 -07:00
|
|
|
"""
|
2022-07-22 19:52:38 +03:00
|
|
|
Column end cap cell.
|
2020-11-03 13:35:34 -08:00
|
|
|
"""
|
2020-05-27 20:03:11 -07:00
|
|
|
|
2020-11-16 13:42:42 -08:00
|
|
|
def __init__(self, name="col_cap_bitcell_2port"):
|
2022-07-13 17:19:09 -07:00
|
|
|
bitcell_base.__init__(self, name, prop=props.col_cap_2port)
|
2020-11-14 08:08:42 -08:00
|
|
|
debug.info(2, "Create col_cap bitcell 2 port object")
|
2020-05-27 20:03:11 -07:00
|
|
|
|
2020-06-22 12:35:37 -07:00
|
|
|
self.no_instances = True
|
2023-03-01 09:25:56 -08:00
|
|
|
|
|
|
|
|
def build_graph(self, graph, inst_name, port_nets):
|
|
|
|
|
"""
|
|
|
|
|
Adds edges based on inputs/outputs.
|
|
|
|
|
Overrides base class function.
|
|
|
|
|
"""
|
|
|
|
|
pass
|