summaryrefslogtreecommitdiff
blob: 08e4bb4fa08e4e162040ee5f2e793756b4137cd2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
(seek
   (
      (pt port)
   )
   (not
      (or
         (and
            (string_matches [identifier pt] "^i_.*")
            (has_mode pt "in")
         )
         (and
            (string_matches [identifier pt] "^o_.*")
            (has_mode pt "out")
         )
         (and
            (string_matches [identifier pt] "^b_.*")
            (has_mode pt "inout")
         )
      )
   )
)