2022-09-13 01:07:00 +02:00
|
|
|
# See LICENSE for licensing information.
|
|
|
|
|
#
|
2024-01-03 23:32:44 +01:00
|
|
|
# Copyright (c) 2016-2024 Regents of the University of California and The Board
|
2022-09-13 01:07:00 +02: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 22:01:20 +01:00
|
|
|
from openram.base import design
|
2022-09-13 01:07:00 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
class internal_base(design):
|
|
|
|
|
|
|
|
|
|
def __init__(self, name, cell_name=None, prop=None):
|
|
|
|
|
design.__init__(self, name, cell_name, prop)
|