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