mirror of https://github.com/VLSIDA/OpenRAM.git
15 lines
362 B
Python
15 lines
362 B
Python
# See LICENSE for licensing information.
|
|
#
|
|
# Copyright (c) 2016-2023 Regents of the University of California and The Board
|
|
# of Regents for the Oklahoma Agricultural and Mechanical College
|
|
# (acting for and on behalf of Oklahoma State University)
|
|
# All rights reserved.
|
|
#
|
|
|
|
from enum import Enum
|
|
|
|
class bit_polarity(Enum):
|
|
NONINVERTING = 0
|
|
INVERTING = 1
|
|
|