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
|
{
"$schema": "https://raw.githubusercontent.com/martinring/tmlanguage/master/tmlanguage.json",
"name": "ATK16",
"patterns": [
{
"name": "comment.documentation.atk16",
"match": ";;;.*"
},
{
"name": "comment.line.semicolon.atk16",
"match": ";.*"
},
{
"name": "keyword.control.directive.atk16",
"match": "^@\\w+"
},
{
"name": "variable.other.register.atk16",
"match": "\\bR[A-H]\\b"
},
{
"name": "constant.numeric.hex.atk16",
"match": "\\b0x[0-9a-fA-F]+\\b"
},
{
"name": "constant.numeric.binary.atk16",
"match": "\\b0b[01]+\\b"
},
{
"name": "constant.numeric.decimal.atk16",
"match": "\\b[0-9]+\\b"
},
{
"name": "keyword.control.symbol.atk16",
"match": "^\\s+[a-zA-Z_-]+"
},
{
"name": "constant.language.flag.atk16",
"match": "\\b(carry|overflow|zero|sign)\\b"
}
],
"repository": {},
"scopeName": "source.atk16"
}
|