annotate src/instab.h @ 4:34568fab6058

Fixed package to include all required files; also added copyright preamble to all source files
author lost
date Sat, 04 Oct 2008 03:14:20 +0000
parents 57495da01900
children 05d4115b4860
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
57495da01900 Initial checking of LWASM
lost
parents:
diff changeset
1 /*
4
34568fab6058 Fixed package to include all required files; also added copyright preamble to all source files
lost
parents: 0
diff changeset
2 instab.h
34568fab6058 Fixed package to include all required files; also added copyright preamble to all source files
lost
parents: 0
diff changeset
3 Copyright © 2008 William Astle
34568fab6058 Fixed package to include all required files; also added copyright preamble to all source files
lost
parents: 0
diff changeset
4
34568fab6058 Fixed package to include all required files; also added copyright preamble to all source files
lost
parents: 0
diff changeset
5 This file is part of LWASM.
34568fab6058 Fixed package to include all required files; also added copyright preamble to all source files
lost
parents: 0
diff changeset
6
34568fab6058 Fixed package to include all required files; also added copyright preamble to all source files
lost
parents: 0
diff changeset
7 LWASM is free software: you can redistribute it and/or modify it under the
34568fab6058 Fixed package to include all required files; also added copyright preamble to all source files
lost
parents: 0
diff changeset
8 terms of the GNU General Public License as published by the Free Software
34568fab6058 Fixed package to include all required files; also added copyright preamble to all source files
lost
parents: 0
diff changeset
9 Foundation, either version 3 of the License, or (at your option) any later
34568fab6058 Fixed package to include all required files; also added copyright preamble to all source files
lost
parents: 0
diff changeset
10 version.
34568fab6058 Fixed package to include all required files; also added copyright preamble to all source files
lost
parents: 0
diff changeset
11
34568fab6058 Fixed package to include all required files; also added copyright preamble to all source files
lost
parents: 0
diff changeset
12 This program is distributed in the hope that it will be useful, but WITHOUT
34568fab6058 Fixed package to include all required files; also added copyright preamble to all source files
lost
parents: 0
diff changeset
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
34568fab6058 Fixed package to include all required files; also added copyright preamble to all source files
lost
parents: 0
diff changeset
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
34568fab6058 Fixed package to include all required files; also added copyright preamble to all source files
lost
parents: 0
diff changeset
15 more details.
34568fab6058 Fixed package to include all required files; also added copyright preamble to all source files
lost
parents: 0
diff changeset
16
34568fab6058 Fixed package to include all required files; also added copyright preamble to all source files
lost
parents: 0
diff changeset
17 You should have received a copy of the GNU General Public License along with
34568fab6058 Fixed package to include all required files; also added copyright preamble to all source files
lost
parents: 0
diff changeset
18 this program. If not, see <http://www.gnu.org/licenses/>.
34568fab6058 Fixed package to include all required files; also added copyright preamble to all source files
lost
parents: 0
diff changeset
19
34568fab6058 Fixed package to include all required files; also added copyright preamble to all source files
lost
parents: 0
diff changeset
20
34568fab6058 Fixed package to include all required files; also added copyright preamble to all source files
lost
parents: 0
diff changeset
21 Contains definitions for the instruction table
34568fab6058 Fixed package to include all required files; also added copyright preamble to all source files
lost
parents: 0
diff changeset
22 */
0
57495da01900 Initial checking of LWASM
lost
parents:
diff changeset
23
57495da01900 Initial checking of LWASM
lost
parents:
diff changeset
24 #include "lwasm.h"
57495da01900 Initial checking of LWASM
lost
parents:
diff changeset
25
57495da01900 Initial checking of LWASM
lost
parents:
diff changeset
26 #ifndef __instab_h_seen__
57495da01900 Initial checking of LWASM
lost
parents:
diff changeset
27 #define __instab_h_seen__
57495da01900 Initial checking of LWASM
lost
parents:
diff changeset
28
57495da01900 Initial checking of LWASM
lost
parents:
diff changeset
29 #define INSTYPE_INH 0 /* inherent addressing */
57495da01900 Initial checking of LWASM
lost
parents:
diff changeset
30 #define INSTYPE_GEN 1 /* general addressing modes */
57495da01900 Initial checking of LWASM
lost
parents:
diff changeset
31 #define INSTYPE_GEN8 2 /* general addressing, 8 bit immed */
57495da01900 Initial checking of LWASM
lost
parents:
diff changeset
32 #define INSTYPE_GENNOIMM 3 /* no immediate addressing */
57495da01900 Initial checking of LWASM
lost
parents:
diff changeset
33 #define INSTYPE_RTOR 4 /* register to register */
57495da01900 Initial checking of LWASM
lost
parents:
diff changeset
34 #define INSTYPE_RLIST 5 /* register list */
57495da01900 Initial checking of LWASM
lost
parents:
diff changeset
35 #define INSTYPE_REL8 6 /* relative addressing */
57495da01900 Initial checking of LWASM
lost
parents:
diff changeset
36 #define INSTYPE_REL16 7 /* 16 bit relative addressing */
57495da01900 Initial checking of LWASM
lost
parents:
diff changeset
37 #define INSTYPE_INDEX 8 /* indexed mode only */
57495da01900 Initial checking of LWASM
lost
parents:
diff changeset
38 #define INSTYPE_IMM8 9 /* immediate only 8 bit (andcc, cwai) */
57495da01900 Initial checking of LWASM
lost
parents:
diff changeset
39 #define INSTYPE_LOGICMEM 10 /* aim/oim/eim/tim */
57495da01900 Initial checking of LWASM
lost
parents:
diff changeset
40 #define INSTYPE_BITBIT 11 /* bit to bit ops */
57495da01900 Initial checking of LWASM
lost
parents:
diff changeset
41 #define INSTYPE_TFM 12 /* TFM ops */
57495da01900 Initial checking of LWASM
lost
parents:
diff changeset
42 #define INSTYPE_GEN32 13 /* general addressing, 32 bit immed */
57495da01900 Initial checking of LWASM
lost
parents:
diff changeset
43 #define INSTYPE_PSEUDO 14 /* special handling, pseudo op */
57495da01900 Initial checking of LWASM
lost
parents:
diff changeset
44
57495da01900 Initial checking of LWASM
lost
parents:
diff changeset
45 #define SPECIAL_EQU 1 /* equ */
57495da01900 Initial checking of LWASM
lost
parents:
diff changeset
46 #define SPECIAL_ORG 2 /* org */
57495da01900 Initial checking of LWASM
lost
parents:
diff changeset
47 #define SPECIAL_SETDP 3
57495da01900 Initial checking of LWASM
lost
parents:
diff changeset
48 #define SPECIAL_FCB 4
57495da01900 Initial checking of LWASM
lost
parents:
diff changeset
49 #define SPECIAL_FDB 5
57495da01900 Initial checking of LWASM
lost
parents:
diff changeset
50 #define SPECIAL_FQB 6
57495da01900 Initial checking of LWASM
lost
parents:
diff changeset
51 #define SPECIAL_FCC 7
57495da01900 Initial checking of LWASM
lost
parents:
diff changeset
52 #define SPECIAL_FCS 8
57495da01900 Initial checking of LWASM
lost
parents:
diff changeset
53 #define SPECIAL_FCN 9
57495da01900 Initial checking of LWASM
lost
parents:
diff changeset
54 #define SPECIAL_RMB 10
57495da01900 Initial checking of LWASM
lost
parents:
diff changeset
55 #define SPECIAL_ALIGN 11
57495da01900 Initial checking of LWASM
lost
parents:
diff changeset
56 #define SPECIAL_END 12
57495da01900 Initial checking of LWASM
lost
parents:
diff changeset
57 #define SPECIAL_INCLUDE 13
57495da01900 Initial checking of LWASM
lost
parents:
diff changeset
58 #define SPECIAL_ENDM 14
57495da01900 Initial checking of LWASM
lost
parents:
diff changeset
59 #define SPECIAL_ENDC 15
57495da01900 Initial checking of LWASM
lost
parents:
diff changeset
60 #define SPECIAL_MACRO 16
57495da01900 Initial checking of LWASM
lost
parents:
diff changeset
61 #define SPECIAL_COND 17
57495da01900 Initial checking of LWASM
lost
parents:
diff changeset
62 #define SPECIAL_ELSE 18
57495da01900 Initial checking of LWASM
lost
parents:
diff changeset
63
57495da01900 Initial checking of LWASM
lost
parents:
diff changeset
64 typedef struct
57495da01900 Initial checking of LWASM
lost
parents:
diff changeset
65 {
57495da01900 Initial checking of LWASM
lost
parents:
diff changeset
66 char *opcode; /* the mneumonic */
57495da01900 Initial checking of LWASM
lost
parents:
diff changeset
67 int ops[4]; /* opcode values for up to four addr modes */
57495da01900 Initial checking of LWASM
lost
parents:
diff changeset
68 int instype; /* type of instruction (see above) */
57495da01900 Initial checking of LWASM
lost
parents:
diff changeset
69 int specialnum; /* type of special instruction */
57495da01900 Initial checking of LWASM
lost
parents:
diff changeset
70 void (*opfn)(asmstate_t *as, sourceline_t *cl, char **optr);
57495da01900 Initial checking of LWASM
lost
parents:
diff changeset
71 } instab_t;
57495da01900 Initial checking of LWASM
lost
parents:
diff changeset
72
57495da01900 Initial checking of LWASM
lost
parents:
diff changeset
73 #ifndef __instab_c_seen__
57495da01900 Initial checking of LWASM
lost
parents:
diff changeset
74 extern instab_t instab[];
57495da01900 Initial checking of LWASM
lost
parents:
diff changeset
75 #endif //__instab_c_seen__
57495da01900 Initial checking of LWASM
lost
parents:
diff changeset
76
57495da01900 Initial checking of LWASM
lost
parents:
diff changeset
77 #endif //__instab_h_seen__