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

15 lines
604 B
Plaintext
Raw Normal View History

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