mirror of https://github.com/VLSIDA/OpenRAM.git
10 lines
124 B
Python
10 lines
124 B
Python
|
|
from enum import Enum
|
||
|
|
|
||
|
|
class direction(Enum):
|
||
|
|
NORTH = 1
|
||
|
|
SOUTH = 2
|
||
|
|
EAST = 3
|
||
|
|
WEST = 4
|
||
|
|
UP = 5
|
||
|
|
DOWN = 6
|