mirror of
https://github.com/MatthewCallis/language-65asm.git
synced 2024-11-25 23:49:19 +00:00
24 lines
543 B
Plaintext
24 lines
543 B
Plaintext
# Adds the pseudo codes known as 6502EX to the basic 6502 instruction set
|
|
|
|
scopeName: 'source.6502ex-opcodes'
|
|
|
|
patterns: [
|
|
# The 6502 pseudo opcodes known as 6502EX
|
|
{
|
|
include: '#mnemonics-6502ex'
|
|
}
|
|
]
|
|
|
|
# Respository starts here -----------------------------------------------------
|
|
repository:
|
|
|
|
# 6502 pseudo op codes
|
|
'mnemonics-6502ex':
|
|
patterns: [
|
|
# mnemonics
|
|
{
|
|
match: '\\b(?i:ALR|ANC|ARR|AXS|DCP|ISC|LAS|LAX|RLA|RRA|SAX|SLO|SRE)\\b'
|
|
name: 'keyword.mnemonic.6502.6502ex-opcodes'
|
|
}
|
|
]
|