1<?php
2/*************************************************************************************
3 * mpasm.php
4 * ---------
5 * Author: Bakalex (bakalex@gmail.com)
6 * Copyright: (c) 2004 Bakalex, Nigel McNie (http://qbnz.com/highlighter)
7 * Release Version: 1.0.9.1
8 * Date Started: 2004/12/6
9 *
10 * Microchip Assembler language file for GeSHi.
11 *
12 * CHANGES
13 * -------
14 * 2008/05/23 (1.0.7.22)
15 *  - Added description of extra language features (SF#1970248)
16 * 2005/01/29 (1.0.0)
17 *  - First Release
18 *
19 * TODO (updated 2005/12/6)
20 * -------------------------
21 *
22 * For the moment, i've only added PIC16C6X registers. We need more (PIC16F/C7x/8x,
23 * PIC10, PIC18 and dsPIC registers).
24 * Must take a look to dsPIC instructions.
25 *
26 *************************************************************************************
27 *
28 *     This file is part of GeSHi.
29 *
30 *   GeSHi is free software; you can redistribute it and/or modify
31 *   it under the terms of the GNU General Public License as published by
32 *   the Free Software Foundation; either version 2 of the License, or
33 *   (at your option) any later version.
34 *
35 *   GeSHi is distributed in the hope that it will be useful,
36 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
37 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
38 *   GNU General Public License for more details.
39 *
40 *   You should have received a copy of the GNU General Public License
41 *   along with GeSHi; if not, write to the Free Software
42 *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
43 *
44 ************************************************************************************/
45
46$language_data = array (
47    'LANG_NAME' => 'Microchip Assembler',
48    'COMMENT_SINGLE' => array(1 => ';'),
49    'COMMENT_MULTI' => array(),
50    'CASE_KEYWORDS' => GESHI_CAPS_NO_CHANGE,
51    'QUOTEMARKS' => array("'", '"'),
52    'ESCAPE_CHAR' => '',
53    'KEYWORDS' => array(
54        /*Directive Language*/
55        4 => array(
56            'CONSTANT', '#DEFINE', 'END', 'EQU', 'ERROR', 'ERROR-LEVEL', '#INCLUDE', 'LIST',
57            'MESSG', 'NOLIST', 'ORG', 'PAGE', 'PROCESSOR', 'RADIX', 'SET', 'SPACE', 'SUBTITLE',
58            'TITLE', '#UNDEFINE', 'VARIABLE', 'ELSE', 'ENDIF', 'ENDW', 'IF', 'IFDEF', 'IFNDEF',
59            'WHILE', '__BADRAM', 'CBLOCK', '__CONFIG', 'DA', 'DATA', 'DB', 'DE', 'DT', 'DW',
60            'ENDC', 'FILL', '__IDLOCS', '__MAXRAM', 'RES', 'ENDM', 'EXITM', 'EXPAND', 'LOCAL',
61            'MACRO', 'NOEXPAND', 'BANKISEL', 'BANKSEL', 'CODE', 'EXTERN', 'GLOBAL', 'IDATA',
62            'PAGESEL', 'UDATA', 'UDATA_ACS', 'UDATA_OVR', 'UDATA_SHR'
63            ),
64        /* 12&14-bit Specific Instruction Set*/
65        1 => array(
66            'andlw', 'call', 'clrwdt', 'goto', 'iorlw', 'movlw', 'option', 'retlw', 'sleep',
67            'tris', 'xorlw', 'addwf', 'andwf', 'clrf', 'clrw', 'comf', 'decf', 'decfsz', 'incf',
68            'incfsz', 'iorwf', 'movf', 'nop', 'rlf', 'rrf', 'subwf', 'swapf', 'xorwf',
69            'bcf', 'bsf', 'btfsc', 'btfss',
70            'addlw', 'retfie', 'return', 'sublw', 'addcf', 'adddcf', 'b', 'bc', 'bdc',
71            'bnc', 'bndc', 'bnz', 'bz', 'clrc', 'clrdc', 'clrz', 'lcall', 'lgoto', 'movfw',
72            'negf', 'setc', 'setdc', 'setz', 'skpc', 'skpdc', 'skpnc', 'skpndc', 'skpnz', 'skpz',
73            'subcf', 'subdcf', 'tstf'
74            ),
75        /* 16-bit Specific Instructiob Set */
76        2 => array (
77            'movfp', 'movlb', 'movlp', 'movpf', 'movwf', 'tablrd', 'tablwt', 'tlrd', 'tlwt',
78            'addwfc', 'daw', 'mullw', 'negw', 'rlcf', 'rlncf', 'rrcf', 'rrncf', 'setf', 'subwfb',
79            'btg', 'cpfseq', 'cpfsgt', 'cpfslt', 'dcfsnz', 'infsnz', 'tstfsz', 'lfsr', 'bnn',
80            'bnov', 'bra', 'pop', 'push', 'rcall', 'reset'
81            ),
82        /* Registers */
83        3 => array(
84            'INDF', 'TMR0', 'PCL', 'STATUS', 'FSR', 'PORTA', 'PORTB', 'PORTC', 'PORTD', 'PORTE',
85            'PCLATH', 'INTCON', 'PIR1', 'PIR2', 'TMR1L', 'TMR1H', 'T1CON', 'TMR2', 'T2CON', 'TMR2L',
86            'TMR2H', 'TMR0H', 'TMR0L', 'SSPBUF', 'SSPCON', 'CCPR1L', 'CCPR1H', 'CCP1CON', 'RCSTA',
87            'TXREG', 'RCREG', 'CCPR2L', 'CCPR2H', 'CCP2CON', 'OPTION', 'TRISA', 'TRISB', 'TRISC',
88            'TRISD', 'TRISE', 'PIE2', 'PIE1', 'PR2', 'SSPADD', 'SSPSTAT', 'TXSTA', 'SPBRG'
89            ),
90        /*Operands*/
91        5 => array(
92            'high','low'
93            )
94        ),
95    'SYMBOLS' => array(
96        '[', ']', '(', ')'
97        ),
98    'CASE_SENSITIVE' => array(
99        GESHI_COMMENTS => false,
100        1 => false,
101        2 => false,
102        3 => false,
103        4 => false,
104        5 => false
105        ),
106    'STYLES' => array(
107        'KEYWORDS' => array(
108            1 => 'color: #00007f;',
109            2 => 'color: #0000ff;',
110            3 => 'color: #007f00;',
111            4 => 'color: #46aa03; font-weight:bold;',
112            5 => 'color: #7f0000;'
113            ),
114        'COMMENTS' => array(
115            1 => 'color: #adadad; font-style: italic;',
116            ),
117        'ESCAPE_CHAR' => array(
118            0 => 'color: #000099; font-weight: bold;'
119            ),
120        'BRACKETS' => array(
121            0 => 'color: #66cc66;'
122            ),
123        'STRINGS' => array(
124            0 => 'color: #7f007f;'
125            ),
126        'NUMBERS' => array(
127            0 => 'color: #ff0000;'
128            ),
129        'METHODS' => array(
130            ),
131        'SYMBOLS' => array(
132            0 => 'color: #66cc66;'
133            ),
134        'REGEXPS' => array(
135            0 => 'color: #ff0000;',
136            1 => 'color: #ff0000;'
137            ),
138        'SCRIPT' => array(
139            )
140        ),
141    'URLS' => array(
142        1 => '',
143        2 => '',
144        3 => '',
145        4 => '',
146        5 => ''
147        ),
148    'OOLANG' => false,
149    'OBJECT_SPLITTERS' => array(
150        ),
151    'REGEXPS' => array(
152        //Hex numbers
153        0 => '[0-9a-fA-F]{1,32}[hH]',
154        //Binary numbers
155        1 => '[01]{1,64}[bB]'
156        ),
157    'STRICT_MODE_APPLIES' => GESHI_NEVER,
158    'SCRIPT_DELIMITERS' => array(
159        ),
160    'HIGHLIGHT_STRICT_BLOCK' => array(
161        )
162);
163