Hello Everyone.
I'm working on a bundle for Assembly for the 8051/52 family. I wanted to add some simple indentation, example:
RSEG TAGS TAGS1: MOV A,@R1 ; after this line indent all the following MOV B,@R0 RET ; after this line decrease indent JMP $
I tried this code for the indentation rule: { decreaseIndentPattern = 'RET|END'; increaseIndentPattern = '*:'; indentNextLinePattern = '*:'; }
But it doesn't do the job.. Any ideas what I'm doing wrong?
Thanks in advance!