mirror of
https://github.com/MatthewCallis/language-65asm.git
synced 2024-11-22 19:31:07 +00:00
15 lines
604 B
Plaintext
15 lines
604 B
Plaintext
# Syntax Highlighting for the cc65 toolchain and 65816 support
|
|
|
|
scopeName: 'source.assembly.65816.cc65-816-toolchain'
|
|
name: '65816 Assembly (cc65)' # Name shown in Atom Editor grammar selection
|
|
# File extensions associated with this grammar
|
|
fileTypes: [
|
|
's'
|
|
]
|
|
# include all opcodes and directives the toolchain supports
|
|
patterns: [
|
|
{ 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
|
|
]
|