language-65asm/grammars/cc65-toolchain.cson

15 lines
591 B
Plaintext
Raw Normal View History

2020-07-11 17:49:39 +00:00
# Syntax Highlighting for the cc65 toolchain and 6502 support
2018-03-20 19:54:24 +00:00
2018-06-03 02:16:44 +00:00
scopeName: 'source.assembly.6502.cc65-toolchain'
name: '6502 Assembly (cc65)' # Name shown in Atom Editor grammar selection
2018-03-22 17:08:30 +00:00
# File extensions associated with this grammar
2018-03-20 19:54:24 +00:00
fileTypes: [
's'
]
2018-03-22 17:08:30 +00:00
# include all opcodes and directives the toolchain supports
2018-03-20 19:54:24 +00:00
patterns: [
2018-06-03 02:12:44 +00:00
{ include: 'source.65c02-opcodes' } # the 65c02 opcodes, includes the basic 6502 instruction set
{ include: 'source.6502x-opcodes' } # extend with 6502X opcodes
{ include: 'source.cc65-directives' } # include the directives for the cc65 toolchain
2018-03-20 19:54:24 +00:00
]