Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions vcd/reader.py
Original file line number Diff line number Diff line change
Expand Up @@ -413,6 +413,8 @@ def take_simple_identifier(self) -> List[int]:
or c == 46 # '.' not in spec, but seen in the wild
or c == 40 # '(' - produced by cva6 core
or c == 41 # ')' - produced by cva6 core
or c == 91 # '[' seen in the wild
or c == 93 # ']' seen in the wild
):
identifier.append(c)
c = self.advance(raise_on_eof=False)
Expand Down