mirror of
https://github.com/MatthewCallis/language-65asm.git
synced 2024-11-29 02:49:36 +00:00
24 lines
380 B
Plaintext
24 lines
380 B
Plaintext
scopeName: 'source.multi1'
|
|
patterns: [
|
|
{ include: '#binnum' }
|
|
{ include: '#hexnum' }
|
|
]
|
|
|
|
repository:
|
|
# Binary numbers
|
|
binnum:
|
|
patterns: [
|
|
{
|
|
match: '%[01]+'
|
|
name: 'constant.numeric.binary.multi1'
|
|
}
|
|
]
|
|
|
|
hexnum:
|
|
patterns: [
|
|
{
|
|
match: '\\$[a-zA-Z0-9]+\\b'
|
|
name: 'constant.numeric.binary.multi1'
|
|
}
|
|
]
|