OpenRAM/compiler/characterizer/bit_polarity.py

15 lines
362 B
Python
Raw Normal View History

2019-07-24 17:15:10 +02:00
# See LICENSE for licensing information.
#
2021-01-22 20:23:28 +01:00
# Copyright (c) 2016-2021 Regents of the University of California and The Board
2019-07-24 17:15:10 +02:00
# 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
2020-11-03 15:29:17 +01:00