prjxray: Add INOUT to direction enum.

INOUT is found on the PS7 interface on the Zynq.

Signed-off-by: Tim 'mithro' Ansell <me@mith.ro>
This commit is contained in:
Tim 'mithro' Ansell 2019-03-14 14:32:59 -07:00
parent 1a95204408
commit 3cf942c5cf
1 changed files with 1 additions and 0 deletions

View File

@ -7,6 +7,7 @@ import enum
class SitePinDirection(enum.Enum):
IN = "IN"
OUT = "OUT"
INOUT = "INOUT"
SiteTypePin = namedtuple('SiteTypePin', 'name direction')