Merge pull request #16 from ProbablyNotArtyom/master

Add KickAssembler syntax
This commit is contained in:
Matthew Callis 2019-11-13 19:34:18 -08:00 committed by GitHub
commit a0db8c9fbd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 175 additions and 0 deletions

View File

@ -14,6 +14,7 @@ Adds syntax highlighting to 65816/65C816/65802/6502/65C02 files in Atom, with ex
- [ORCA/M](http://www.byteworks.us/Byte_Works/Products.html)
- [WLA-DX](http://www.villehelin.com/wla.html)
- [WTCTools by Western Design Center](http://westerndesigncenter.com/wdc/tools.cfm)
- [Kick Assembler](http://theweb.dk/KickAssembler/Main.html#frontpage)
Originally [converted](http://atom.io/docs/latest/converting-a-text-mate-bundle)
from the various other TextMate bundles:
@ -56,3 +57,4 @@ See last line in grammar files for names.
- [ARM9](https://github.com/ARM9)
- [georgjz](https://github.com/georgjz)
- [GoDot](http://www.godot64.de/)
- [NotArtyom](https://github.com/ProbablyNotArtyom)

173
grammars/kickass.cson Normal file
View File

@ -0,0 +1,173 @@
scopeName: 'source.assembly.6502.kickass'
name: 'Kick Assembler'
fileTypes: [
'a'
'asm'
's'
'S'
]
patterns: [
{ include: 'source.65c02-opcodes' }
{ include: 'source.6502x-opcodes' }
{ include: '#comments' }
{ include: '#directives' }
{ include: '#symbols' }
]
repository:
comments:
patterns: [
{
match: '(\\/\\/[^\\n]+)'
name: 'comment.line'
}
{
begin: '\\/\\*'
end: '\\*\\/'
name: 'comment.block'
}
]
symbols:
patterns: [
# ===============================================================
# Assembler symbols
{ # Labels
name: 'entity.name.function.kickass'
match: '^\\s*[!a-zA-Z_][a-zA-Z0-9_]*:'
}
{ # Variable functions, like var.getValue()
match: '(\\w+(?=\\())'
name: 'entity.name.function.kickass'
}
# ===============================================================
# Data types
{ # Chars
match: "\\'\\S\\'"
name: 'string.char.kickass'
}
{ # Strings
name: 'string.quoted.kickass'
begin: '"'
end: '"'
}
{ # Hex numbers
match: '-?\\$[A-Fa-f0-9]+'
name: 'constant.numeric.hex.kickass'
}
{ # Octals
match: '@([0-7]+)\\b'
name: 'constant.numeric.octal.merlin'
}
{ # Binary numbers
match: '%[01]+'
name: 'constant.numeric.binary.merlin'
}
{ # Decimal numbers
match: '\\b([0-9]+)\\b'
name: 'constant.numeric.decimal.merlin'
}
{ # Operators
match: '[-+/*^><|#\\[\\](),=.!&]'
name: 'keyword.operator.kickass'
}
{ # Immediate values
match: '\\#(\'.\'|[^\\s\']+)'
name: 'constant.numeric.hex.kickass'
}
{ # Constants
match: '\\b([_A-Z]+)\\b'
name: 'variable.kickass'
}
]
directives:
patterns: [
# ===============================================================
# Preprocessor directives
{
match: '(\\#)((?:define|undef))([\\s\\w]+)'
captures:
1: name: 'keyword.control.directive.kickass'
2: name: 'keyword.control.directive.kickass'
3: name: 'variable.kickass'
}
{
match: '(\\#)((?:endif|el(se|if)|if|importif))([\\s\\w]+)'
captures:
1: name: 'keyword.control.directive.kickass'
2: name: 'keyword.control.directive.kickass'
4: name: 'variable.kickass'
}
{
match: '(\\#)((import(once)?))([\\s\\w]+)'
name: 'keyword.control.directive.kickass'
}
# ===============================================================
# Assembler directive conditionals
{
match: '(\\.)((?:elif|if))'
captures:
1: name: 'keyword.control.directive.kickass'
2: name: 'keyword.control.directive.kickass'
}
{
match: '(\\}?(\\s+)?)(else)'
captures:
3: name: 'keyword.control.directive.kickass'
}
# ===============================================================
# Assembler directives misc
{ # Assembler directives that have inconsistant syntax
match: '(\\.)((?:return|namespace|print(now)?|by(te)?|align|assert(error)?|break|disk|dw(ord)?|encoding|enum|error(if)?|file(modify|namespace)?|fill(word)?|for|lohifill|memblock|modify|pc|plugin|pseudopc|segment(def|out)?|struct|te(xt)?|while|wo(rd)?|zp|import( binary| c64| source| text|once)))\\b'
name: 'keyword.control.directive.kickass'
}
{
match: '(\\}?(\\s+)?)(else)'
captures:
2: name: 'keyword.control.directive.kickass'
}
# ===============================================================
# Variables and Macros
{
match: '(\\.)(var|eval|const|label)(\\s*[a-zA-Z0-9_]*)(\\s*=)'
captures:
1: name: 'keyword.control.directive.kickass'
2: name: 'keyword.control.directive.kickass'
3: name: 'support.function.kickass'
4: name: 'keyword.operator.kickass'
}
{
match: '(\\.)(var|eval|const|label)(\\s*[a-zA-Z0-9_]*)'
captures:
1: name: 'keyword.control.directive.kickass'
2: name: 'keyword.control.directive.kickass'
3: name: 'support.function.kickass'
}
{
match: '(\\.)(function|macro)([\\s\\w_.]*)(\\()([^)]*)(\\))'
captures:
1: name: 'keyword.control.directive.kickass'
2: name: 'keyword.control.directive.kickass'
3: name: 'entity.name.function.kickass'
4: name: 'keyword.operator.kickass'
5: name: 'constant.variable.kickass'
6: name: 'keyword.operator.kickass'
}
{
match: '(\\.)(pseudocommand)(\\s+)([^\\s\\n]+)'
captures:
1: name: 'keyword.control.directive.kickass'
2: name: 'keyword.control.directive.kickass'
4: name: 'entity.name.function.kickass'
}
]