mirror of
https://github.com/jtfmumm/6502asm-sublime.git
synced 2025-01-02 22:32:53 +00:00
Minor
This commit is contained in:
parent
6518995135
commit
c2182a6011
@ -53,19 +53,19 @@
|
|||||||
},
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
"match": "(?i)\\b($(\\d|[A-F])+)\\b",
|
"match": "(?i)\\$((\\d|[A-F])+)\\b",
|
||||||
"name": "constant.numeric.asm",
|
"name": "constant.numeric.asm",
|
||||||
"comment": "Hex number constant"
|
"comment": "Hex number constant"
|
||||||
},
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
"match": "\\b%(0b(0|1)+)\\b",
|
"match": "(?i)\\%(0b(0|1)+)\\b",
|
||||||
"name": "constant.numeric.asm",
|
"name": "constant.numeric.asm",
|
||||||
"comment": "Bin number constant"
|
"comment": "Bin number constant"
|
||||||
},
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
"match": "\\b#(0|[1-9]\\d+)\\b",
|
"match": "(?i)\\#(0|[1-9]\\d+)\\b",
|
||||||
"name": "constant.numeric.asm",
|
"name": "constant.numeric.asm",
|
||||||
"comment": "Dec number constant"
|
"comment": "Dec number constant"
|
||||||
}
|
}
|
||||||
|
@ -58,16 +58,6 @@
|
|||||||
<key>name</key>
|
<key>name</key>
|
||||||
<string>comment.line.asm</string>
|
<string>comment.line.asm</string>
|
||||||
</dict>
|
</dict>
|
||||||
<dict>
|
|
||||||
<key>begin</key>
|
|
||||||
<string>(/\*)</string>
|
|
||||||
<key>comment</key>
|
|
||||||
<string>C-style comment block (AVR ASM 2.0 only)</string>
|
|
||||||
<key>end</key>
|
|
||||||
<string>(\*/)</string>
|
|
||||||
<key>name</key>
|
|
||||||
<string>comment.block.asm</string>
|
|
||||||
</dict>
|
|
||||||
<dict>
|
<dict>
|
||||||
<key>comment</key>
|
<key>comment</key>
|
||||||
<string>Single-line string</string>
|
<string>Single-line string</string>
|
||||||
@ -88,7 +78,7 @@
|
|||||||
<key>comment</key>
|
<key>comment</key>
|
||||||
<string>Hex number constant</string>
|
<string>Hex number constant</string>
|
||||||
<key>match</key>
|
<key>match</key>
|
||||||
<string>(?i)\b($(\d|[A-F])+)\b</string>
|
<string>(?i)\$((\d|[A-F])+)\b</string>
|
||||||
<key>name</key>
|
<key>name</key>
|
||||||
<string>constant.numeric.asm</string>
|
<string>constant.numeric.asm</string>
|
||||||
</dict>
|
</dict>
|
||||||
@ -96,7 +86,7 @@
|
|||||||
<key>comment</key>
|
<key>comment</key>
|
||||||
<string>Bin number constant</string>
|
<string>Bin number constant</string>
|
||||||
<key>match</key>
|
<key>match</key>
|
||||||
<string>\%(0b(0|1)+)\b</string>
|
<string>(?i)\%(0b(0|1)+)\b</string>
|
||||||
<key>name</key>
|
<key>name</key>
|
||||||
<string>constant.numeric.asm</string>
|
<string>constant.numeric.asm</string>
|
||||||
</dict>
|
</dict>
|
||||||
@ -104,7 +94,7 @@
|
|||||||
<key>comment</key>
|
<key>comment</key>
|
||||||
<string>Dec number constant</string>
|
<string>Dec number constant</string>
|
||||||
<key>match</key>
|
<key>match</key>
|
||||||
<string>\#(0|[1-9]\d+)\b</string>
|
<string>(?i)\#(0|[1-9]\d+)\b</string>
|
||||||
<key>name</key>
|
<key>name</key>
|
||||||
<string>constant.numeric.asm</string>
|
<string>constant.numeric.asm</string>
|
||||||
</dict>
|
</dict>
|
||||||
|
Loading…
Reference in New Issue
Block a user