summaryrefslogtreecommitdiff
path: root/tests/examplefiles/systemverilog/flipflop.sv.output
blob: 86fdd22340c274692d81bf6ad82f072e3b004968 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
'module'      Keyword
' '           Text.Whitespace
'toplevel'    Name
'('           Punctuation
'clock'       Name
','           Punctuation
'reset'       Name
')'           Punctuation
';'           Punctuation
'\n '         Text.Whitespace
'input'       Keyword
' '           Text.Whitespace
'clock'       Name
';'           Punctuation
'\n '         Text.Whitespace
'input'       Keyword
' '           Text.Whitespace
'reset'       Name
';'           Punctuation
'\n \n '      Text.Whitespace
'reg'         Keyword.Type
' '           Text.Whitespace
'flop1'       Name
';'           Punctuation
'\n '         Text.Whitespace
'reg'         Keyword.Type
' '           Text.Whitespace
'flop2'       Name
';'           Punctuation
'\n \n '      Text.Whitespace
'always'      Keyword
' '           Text.Whitespace
'@'           Punctuation
' '           Text.Whitespace
'('           Punctuation
'posedge'     Keyword
' '           Text.Whitespace
'reset'       Name
' '           Text.Whitespace
'or'          Keyword
' '           Text.Whitespace
'posedge'     Keyword
' '           Text.Whitespace
'clock'       Name
')'           Punctuation
'\n '         Text.Whitespace
'if'          Keyword
' '           Text.Whitespace
'('           Punctuation
'reset'       Name
')'           Punctuation
'\n   '       Text.Whitespace
'begin'       Keyword
'\n     '     Text.Whitespace
'flop1'       Name
' '           Text.Whitespace
'<'           Operator
'='           Operator
' '           Text.Whitespace
'0'           Literal.Number.Integer
';'           Punctuation
'\n     '     Text.Whitespace
'flop2'       Name
' '           Text.Whitespace
'<'           Operator
'='           Operator
' '           Text.Whitespace
'1'           Literal.Number.Integer
';'           Punctuation
'\n   '       Text.Whitespace
'end'         Keyword
'\n '         Text.Whitespace
'else'        Keyword
'\n   '       Text.Whitespace
'begin'       Keyword
'\n     '     Text.Whitespace
'flop1'       Name
' '           Text.Whitespace
'<'           Operator
'='           Operator
' '           Text.Whitespace
'flop2'       Name
';'           Punctuation
'\n     '     Text.Whitespace
'flop2'       Name
' '           Text.Whitespace
'<'           Operator
'='           Operator
' '           Text.Whitespace
'flop1'       Name
';'           Punctuation
'\n   '       Text.Whitespace
'end'         Keyword
'\n'          Text.Whitespace

'endmodule'   Keyword
'\n'          Text.Whitespace