OpenRAM/compiler/modules/internal_base.py

15 lines
446 B
Python
Raw Normal View History

2022-09-13 01:07:00 +02:00
# See LICENSE for licensing information.
#
2023-01-29 07:56:27 +01:00
# Copyright (c) 2016-2023 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)