summaryrefslogtreecommitdiff
blob: ddeb4e363cb0b39a0229b557ef26f1fe5f24fd78 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
(tag_existing
   (
      (pt port CNE_01100_BAD_NAME)
   )
   (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")
         )
      )
   )
)