mirror of https://github.com/openXC7/prjxray.git
fuzzers/005-tilegrid/pcie_int_interface/top.py: fix PCIE_INT variable name
Signed-off-by: Hans Baier <foss@hans-baier.de>
This commit is contained in:
parent
8d7f18cd7d
commit
ce09bfb56e
|
|
@ -16,7 +16,7 @@ from prjxray import util
|
|||
from prjxray.db import Database
|
||||
from prjxray.grid_types import GridLoc
|
||||
|
||||
GTP_INT_Y_RE = re.compile("PCIE_INT_INTERFACE.*X[0-9]+Y([0-9]+)")
|
||||
PCIE_INT_Y_RE = re.compile("PCIE_INT_INTERFACE.*X[0-9]+Y([0-9]+)")
|
||||
|
||||
|
||||
def get_pcie_int_tiles(grid, pcie_loc):
|
||||
|
|
@ -36,7 +36,7 @@ def get_pcie_int_tiles(grid, pcie_loc):
|
|||
if not tile_name.startswith("PCIE_INT_INTERFACE"):
|
||||
continue
|
||||
|
||||
m = GTP_INT_Y_RE.match(tile_name)
|
||||
m = PCIE_INT_Y_RE.match(tile_name)
|
||||
|
||||
assert m
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue