Added missing file.
[tinycc/k1w1.git] / tccasm.h
blob282e926bd1ce899c80133d85d4bbb9642485f761
1 /*
2 * GAS like assembler for TCC
3 *
4 * Copyright (c) 2001-2004 Fabrice Bellard
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 #ifndef __TCCASM_H__
21 #define __TCCASM_H__
23 #ifdef CONFIG_TCC_ASM
24 void asm_expr(TCCState *s1, ExprValue *pe);
25 int asm_int_expr(TCCState *s1);
26 int find_constraint(ASMOperand *operands, int nb_operands,
27 const char *name, const char **pp);
28 int tcc_assemble(TCCState *s1, int do_preprocess);
29 void asm_instr(void);
30 void asm_global_instr(void);
31 #endif
33 #endif /* __TCCASM_H__ */