comparison src/insn_gen.c @ 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 74a3fef7c8d0
comparison
equal deleted inserted replaced
3:46e532283947 4:34568fab6058
1 /* 1 /*
2 * insn_gen.c 2 insn_gen.c, Copyright © 2008 William Astle
3 * 3
4 * parsing general addressing modes (IMM+DIR+EXT+IND) 4 This file is part of LWASM.
5 */ 5
6 LWASM is free software: you can redistribute it and/or modify it under the
7 terms of the GNU General Public License as published by the Free Software
8 Foundation, either version 3 of the License, or (at your option) any later
9 version.
10
11 This program is distributed in the hope that it will be useful, but WITHOUT
12 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 more details.
15
16 You should have received a copy of the GNU General Public License along with
17 this program. If not, see <http://www.gnu.org/licenses/>.
18
19 Contains code for parsing general addressing modes (IMM+DIR+EXT+IND)
20 */
6 21
7 #include <ctype.h> 22 #include <ctype.h>
8 #include "lwasm.h" 23 #include "lwasm.h"
9 #include "instab.h" 24 #include "instab.h"
10 25