language-assembly
An assembly grammar for Atom.
- Supports Intel syntax and x86 instruction sets.
- Fully supports the 8051 family. (NEW) (Yay!)
Example snippets
Right now, the package does not include any snippets, but you can add them manually.
Check out all the snippets we have on our Wiki!
'.source.assembly.asm.x86.intel':
'Move instruction':
'prefix': 'MOV'
'body': 'MOV $1, $2'
'Move to Accumulator':
'prefix': 'MOVA'
'body': 'MOV A, $1'
'Add':
'prefix': 'ADD'
'body': 'ADD A, $1'