home *** CD-ROM | disk | FTP | other *** search
- //--------------------------------------------------------------------
- // XASM.AML
- // Syntax highlighting for NASM assembly language files (asm, inc)
- //
- // After making changes, save this file and compile with <shift f10>.
- //--------------------------------------------------------------------
-
- include bootpath "define.aml"
-
- // note: this color scheme was designed for use with a black background
-
- regcolor = white // color of registers
- mnecolor = cyan // color of mnemonics
- fmnecolor = brightblue // color of fpu mnemonics
- udcolor = brightmagenta // color of undocumented mnemonics
- mcrcolor = brightblue // color of macro keywords
- datacolor = green // color of data mnemonics
- cwcolor = yellow // color of control words
- dircolor = red // color of directives
-
- include bootpath "syn\\xasm_reg.aml" // list of registers
- include bootpath "syn\\xasm_mne.aml" // list of mnemonics
- include bootpath "syn\\xasm_fmn.aml" // list of fpu mnemonics
- include bootpath "syn\\xasm_mcr.aml" // list of macro keywords
- include bootpath "syn\\xasm_xtr.aml" // list of other stuff (directives, etc.)
-
- syntax
- 'bcfin' // options:
- // b=show through marked block
- // c=highlight cursor line
- // d=show through closed folds
- // f=use only foreground colors
- // i=ignore keyword case
- // n=highlight numbers
- '~^&|<>/%*+-()' // symbol set 1
- '[,]:.{}' // symbol set 2
- '\'"$' // string characters
- '' // string literal char
- '' // numeric symbol
- ';' 0 // eol comment 1 / start column
- '' 0 // eol comment 2 / start column
- '' '' // multi-line comment 1
- '' '' // multi-line comment 2
- 0 // number of lines to scan backward
-
-
- // colors
- color white on black // not used
- color cyan on cyan // math symbols
- color brightgreen on cyan // other symbols
- color brightred on black // string
- color brightcyan on black // numeric
- color brightgreen on black // eol comment 1
- color brightgreen on black // not used
- color brightgreen on black // not used
- color brightgreen on black // not used
-