Bases: Enum
Enumerations to describe the possible states of a FIFO.
See also
Attributes:
-
Full
(FifoState)
–
Represent the state of a FIFO when it is full.
-
Empty
(FifoState)
–
Represent the state of a FIFO when it is empty.
-
Occupied
(FifoState)
–
Represent the state of a FIFO when it is not full but not empty either.
Full: FifoState = ...
class-attribute
instance-attribute
Empty: FifoState = ...
class-attribute
instance-attribute
Occupied: FifoState = ...
class-attribute
instance-attribute