mirror of
https://github.com/MatthewCallis/language-65asm.git
synced 2024-11-22 04:33:45 +00:00
15 lines
591 B
Plaintext
15 lines
591 B
Plaintext
# Syntax Highlighting for the cc65 toolchain ans 6502 support
|
|
|
|
scopeName: 'source.assembly.6502.cc65-toolchain'
|
|
name: '6502 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.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
|
|
]
|