Changeset 185
- Timestamp:
- Dec 18, 2017, 1:32:41 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/config/m_trp.fte ¶
r144 r185 1 # x86 instruction list now nearly complete, 1 # x86 instruction list now nearly complete, 2 2 # also added floating point registers and some nasm directives 3 3 # jsvendsen 07-24-2001 4 # did some real plumbing 5 # mrwarper 2017-10-23 4 6 colorize TRP { 5 7 SyntaxParser = 'SIMPLE'; 6 8 7 9 color { 8 10 { 'Normal', 'Editor_Default' }, … … 25 27 'test', 'cmp', 26 28 'inc', 'dec', 27 'popa', 'popaw', 'popf', 'popfw', 'popfd', 29 'popa', 'popaw', 'popf', 'popfw', 'popfd', 28 30 'pusha', 'pushad', 'pushaw', 'pushf', 'pushfd', 'pushfw', 29 31 'scasd', 'scasw', 'scasb', … … 31 33 'stosd', 'stosw', 'stosb', 32 34 'out', 'outsd', 'outsw', 'outsb', 33 'in', 'insd', 'insw', 'insb', 34 'int', 'nop', 'rep', 'repz', 'repnz', 'repe', 'repne', 35 'in', 'insd', 'insw', 'insb', 36 'int', 'nop', 'rep', 'repz', 'repnz', 'repe', 'repne', 35 37 'int1', 'icepb', 'int01', 'int3', 'into', 36 38 'cld', 'clc', 'cli', 'clts', 'stc', … … 49 51 'ficom', 'ficomp', 'fidiv', 'fidivr', 'fild', 'fist', 'fistp', 50 52 'fimul', 'fincstp', 'finit', 'fninit', 'fisub', 'fisubr', 51 'fld', 'fld1', 'fldl2e', 'fldl2t', 'fldlg2', 'fldln2', 'fldpi', 53 'fld', 'fld1', 'fldl2e', 'fldl2t', 'fldlg2', 'fldln2', 'fldpi', 52 54 'fldz', 'fldcw', 'fldenv', 'fmul', 'fmulp', 'fnop', 'fpatan', 'fptan', 53 55 'fprem', 'fprem1', 'frndint', 'fsave', 'frstor', 'fscale', … … 55 57 'fstenv', 'fnstenv', 'fsub', 'fsubr', 'fsubp', 'fsubrp', 'ftst', 56 58 'fucom', 'fucomp', 'fucompp', 'fucomi', 'fucomip', 'fxam', 'fxch', 57 'fxtract', 'fyl2x', 'fyl2xp1', 59 'fxtract', 'fyl2x', 'fyl2xp1', 58 60 'invd', 'invlpg', 'lahf', 'lar', 'lds', 'les', 'lfs', 'lgs', 'lss', 59 61 'lgdt', 'lidt', 'lldt', 'sgdt', 'sidt', 'sldt', 'lmsw', 'smsw', … … 71 73 'salc', 'shld', 'shrd', 'smi', 'stc', 'std', 'sti', 'str', 72 74 'umov', 'verr', 'verw', 'wait', 'wbinvd', 'wrmsr', 'xadd', 'xbts', 73 'xchg', 'xlatb', 75 'xchg', 'xlatb', 74 76 'enter', 'leave', 75 77 }; … … 88 90 89 91 keyword 'Editor_Keywords2' { 90 'ffffffff', 'ffff',91 92 'call', 'ret', 'retf', 'retn', 92 93 'iret', 'iretw', 'iretd', … … 101 102 'jcxz', 'jecxz', 102 103 'loop', 'loope', 'loopz', 'loopne', 'loopnz', 103 104 104 105 }; 105 106 106 107 keyword 'Editor_Keywords4' { 107 'invalid', 'address', 'valid', 'process', 'PID', 'TID', 'priority', 108 'invalid', 'address', 'valid', 'process', 'PID', 'TID', 'priority', 108 109 'filename', 'cause', 'module', 'symbol', 'nearest', 'labels', 'thread', 109 110 'size', 'base', 'max', 'top', 'offset', 110 'near', 'far', 'short', 'seg', 111 'near', 'far', 'short', 'seg', 111 112 'ptr', 'word', 'byte', 'dword', 'qword', 'dup', 112 113 }; 113 114 114 115 keyword 'Editor_Keywords5' { 115 116 'trap', 'stack', 'public', 'obj', … … 128 129 }; 129 130 130 h_state 0 { 'Normal' } 131 h_trans { 2, '-s', 'a-zA-Z_$@', 'Normal' } 132 h_trans { 1, '-s', '0-9', 'Number' } 133 h_trans { 0, 'S', 'a-zA-Z0-9_$@', 'Punctuation' } 131 h_state 0 { 'Normal' } 132 # Next two (not real punctuation) can be removed 133 h_trans { 0, 'x', '[\-\.][\-\.]+', 'Normal' } 134 h_trans { 0, '', ':\\', 'Normal' } 135 h_trans { 0, 's', '-+([:])/.,>=', 'Punctuation' } # '-' is normally a range separator, so it must go first 136 h_trans { 0, 'x', '0x[A-Fa-f0-9]+', 'Number' } # "i" flag does not quite work ?! 137 h_trans { 1, '-x', '[A-Za-z0-9]*[G-Zg-z][A-Za-z0-9]*', 'Normal' } 138 h_trans { 0, 'x', ' [a-f] ', 'Normal' } # Just a distraction 139 h_trans { 0, 'x', '[A-Fa-f0-9]+', 'Number' } 134 140 135 h_state 1 { 'Number' } 136 h_trans { 0, '$', '', 'Normal' } 137 h_trans { 0, 's', 'Xx', 'Number' } 138 h_trans { 0, '-x', /\W[0-9A-Fa-f]+\s/, 'Number' } 139 h_trans { 0, 'S', '0-9A-Fa-f_$@', 'Punctuation' } 140 141 h_state 2 { 'Normal' } 142 h_trans { 0, '$', '', 'Normal' } 141 h_state 1 { 'Normal' } # Just keyword highlight 143 142 h_wtype { 0, 0, 0, 'i', 'a-zA-Z0-9_$@' } 144 143 } … … 149 148 Colorizer = 'TRP'; 150 149 AutoHilitParen = 1; 151 150 152 151 SaveFolds = 2; # save fold info at end of line 153 152 }
Note:
See TracChangeset
for help on using the changeset viewer.