aboutsummaryrefslogtreecommitdiffstats
path: root/icefuzz/tests/ioctrl.py
blob: 6d09bad5e7b163baa3c035c821a0e5a4b0daec0d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/python

import fileinput

for line in fileinput.input():
    line = line.split()
    if len(line) == 0:
        continue
    if line[0] == ".io_tile":
        current_tile = (int(line[1]), int(line[2]))
    if line[0] == "IoCtrl" and line[1] == "REN_0":
        ren = (current_tile[0], current_tile[1], 0)
    if line[0] == "IoCtrl" and line[1] == "REN_1":
        ren = (current_tile[0], current_tile[1], 1)
    if line[0] == "IOB_0":
        iob = (current_tile[0], current_tile[1], 0)
    if line[0] == "IOB_1":
        iob = (current_tile[0], current_tile[1], 1)

print("(%2d, %2d, %2d, %2d, %2d, %2d)," % (iob[0], iob[1], iob[2], ren[0], ren[1], ren[2]))