comparison lwasm/insn_inh.c @ 346:a82c55070624

Added expression parsing infrastructure and misc fixes
author lost@starbug
date Sat, 27 Mar 2010 19:04:03 -0600
parents
children 11a95c6414b4
comparison
equal deleted inserted replaced
345:7416c3f9c321 346:a82c55070624
1 /*
2 insn_inh.c
3 Copyright © 2010 William Astle
4
5 This file is part of LWASM.
6
7 LWASM is free software: you can redistribute it and/or modify it under the
8 terms of the GNU General Public License as published by the Free Software
9 Foundation, either version 3 of the License, or (at your option) any later
10 version.
11
12 This program is distributed in the hope that it will be useful, but WITHOUT
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
15 more details.
16
17 You should have received a copy of the GNU General Public License along with
18 this program. If not, see <http://www.gnu.org/licenses/>.
19
20 */
21
22 #include <config.h>
23
24 #include "lwasm.h"
25 #include "instab.h"
26
27 PARSEFUNC(insn_parse_inh)
28 {
29 l -> len = OPLEN(instab[l -> insn].ops[0]);
30 }
31
32 RESOLVEFUNC(insn_resolve_inh)
33 {
34 lwasm_emitop(l, instab[l -> insn].ops[0]);
35 }