2018-03-22 21:03:41 +00:00
|
|
|
# Syntax Highlighting for the Western Design Center toolchain and 65816 support
|
|
|
|
|
2018-06-03 02:16:44 +00:00
|
|
|
scopeName: 'source.assembly.65816.wdc-816-toolchain'
|
2018-03-22 21:03:41 +00:00
|
|
|
name: '65816 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 02:12:44 +00:00
|
|
|
{ include: 'source.65816-opcodes' } # the 65c02 opcodes, includes the basic 65c02 instruction set
|
|
|
|
{ include: 'source.65816-aliases' } # Opcode aliases for the 65816
|
|
|
|
{ include: 'source.wdc-directives' } # include the directives of the WDCxAS assemblers
|
2018-03-22 21:03:41 +00:00
|
|
|
]
|