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

15 lines
607 B
Plaintext
Raw Normal View History

2018-03-22 22:03:41 +01:00
# Syntax Highlighting for the Western Design Center toolchain and 6502 support
# TODO: extra addressing modes, chip point prefix, * comments
2018-06-03 04:16:44 +02:00
scopeName: 'source.assembly.6502.wdc-toolchain'
2018-03-22 22:03:41 +01:00
name: '6502 Assembly (WDCTools)' # Name shown in Atom Editor grammar selection
# File extensions associated with this grammar
fileTypes: [
's'
]
# include all opcodes and directives the toolchain supports
patterns: [
2018-06-03 04:12:44 +02:00
{ include: 'source.65c02-opcodes' } # the 65c02 opcodes, includes the basic 6502 instruction set
{ include: 'source.wdc-directives' } # include the directives of the WDCxAS assemblers
2018-03-22 22:03:41 +01:00
]