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

15 lines
591 B
Plaintext
Raw Normal View History

2018-03-22 18:08:30 +01:00
# Syntax Highlighting for the cc65 toolchain ans 6502 support
2018-03-20 20:54:24 +01:00
2018-06-03 04:16:44 +02:00
scopeName: 'source.assembly.6502.cc65-toolchain'
name: '6502 Assembly (cc65)' # Name shown in Atom Editor grammar selection
2018-03-22 18:08:30 +01:00
# File extensions associated with this grammar
2018-03-20 20:54:24 +01:00
fileTypes: [
's'
]
2018-03-22 18:08:30 +01:00
# include all opcodes and directives the toolchain supports
2018-03-20 20:54:24 +01:00
patterns: [
2018-06-03 04:12:44 +02: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 20:54:24 +01:00
]