summaryrefslogtreecommitdiff
blob: ad94747b69e68e14a62b6cc476ab8951ce74bea3 (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")
         )
      )
   )
)