2022-09-12 16:07:00 -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
|
2022-09-12 16:07:00 -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.base import design
|
2022-09-12 16:07:00 -07:00
|
|
|
|
|
|
|
|
|
|
|
|
|
class internal_base(design):
|
|
|
|
|
|
|
|
|
|
def __init__(self, name, cell_name=None, prop=None):
|
|
|
|
|
design.__init__(self, name, cell_name, prop)
|