xref: /qemu/target/i386/tcg/tcg-cpu.h (revision 222f3e6f190c01c764be51ec7e9beb695cd11e1c)
1*222f3e6fSPaolo Bonzini /*
2*222f3e6fSPaolo Bonzini  * i386 TCG cpu class initialization functions
3*222f3e6fSPaolo Bonzini  *
4*222f3e6fSPaolo Bonzini  *  Copyright (c) 2003 Fabrice Bellard
5*222f3e6fSPaolo Bonzini  *
6*222f3e6fSPaolo Bonzini  * This library is free software; you can redistribute it and/or
7*222f3e6fSPaolo Bonzini  * modify it under the terms of the GNU Lesser General Public
8*222f3e6fSPaolo Bonzini  * License as published by the Free Software Foundation; either
9*222f3e6fSPaolo Bonzini  * version 2 of the License, or (at your option) any later version.
10*222f3e6fSPaolo Bonzini  *
11*222f3e6fSPaolo Bonzini  * This library is distributed in the hope that it will be useful,
12*222f3e6fSPaolo Bonzini  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13*222f3e6fSPaolo Bonzini  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14*222f3e6fSPaolo Bonzini  * Lesser General Public License for more details.
15*222f3e6fSPaolo Bonzini  *
16*222f3e6fSPaolo Bonzini  * You should have received a copy of the GNU Lesser General Public
17*222f3e6fSPaolo Bonzini  * License along with this library; if not, see <http://www.gnu.org/licenses/>.
18*222f3e6fSPaolo Bonzini  */
19*222f3e6fSPaolo Bonzini #ifndef TCG_CPU_H
20*222f3e6fSPaolo Bonzini #define TCG_CPU_H
21*222f3e6fSPaolo Bonzini 
22*222f3e6fSPaolo Bonzini bool tcg_cpu_realizefn(CPUState *cs, Error **errp);
23*222f3e6fSPaolo Bonzini 
24*222f3e6fSPaolo Bonzini #endif /* TCG_CPU_H */
25