mirror of
https://github.com/MatthewCallis/language-65asm.git
synced 2024-11-25 07:32:18 +00:00
24 lines
496 B
Plaintext
24 lines
496 B
Plaintext
|
# Pseudo opcodes for the 65816 used by some assemblers
|
||
|
|
||
|
scopeName: 'source.65816alt-opcodes'
|
||
|
|
||
|
patterns: [
|
||
|
# The 65816 instruction set
|
||
|
{
|
||
|
include: '#mnemonics-65816alt'
|
||
|
}
|
||
|
]
|
||
|
|
||
|
# Respository starts here -----------------------------------------------------
|
||
|
repository:
|
||
|
|
||
|
# 65816 instruction set
|
||
|
'mnemonics-65816alt':
|
||
|
patterns: [
|
||
|
# mnemonics
|
||
|
{
|
||
|
match: '\\b(?i:tas|tsa|swa|tad|tda|blt|bge)\\b'
|
||
|
name: 'keyword.mnemonic.65816.65816alt-opcodes'
|
||
|
}
|
||
|
]
|