Added NOP

NOP wasn't there so I added it
This commit is contained in:
Minerscale 2017-05-27 12:16:52 +10:00 committed by John Mumm
parent e9438a40bb
commit 7499d559b9
2 changed files with 3 additions and 3 deletions

View File

@ -5,7 +5,7 @@
"patterns": [
{
"match": "(?i)\\b(adc|and|asl|dec|dex|dey|eor|inc|inx|iny|lsr|ora|rol|ror|sbc)\\b",
"match": "(?i)\\b(adc|and|asl|dec|dex|dey|eor|inc|inx|iny|lsr|ora|rol|ror|sbc|nop)\\b",
"name": "keyword.arithlogic.asm",
"comment": "Arithmetic and logic instructions"
},

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>fileTypes</key>
@ -14,7 +14,7 @@
<key>comment</key>
<string>Arithmetic and logic instructions</string>
<key>match</key>
<string>(?i)\b(adc|and|asl|dec|dex|dey|eor|inc|inx|iny|lsr|ora|rol|ror|sbc)\b</string>
<string>(?i)\b(adc|and|asl|dec|dex|dey|eor|inc|inx|iny|lsr|ora|rol|ror|sbc|nop)\b</string>
<key>name</key>
<string>keyword.arithlogic.asm</string>
</dict>