exec.h 1.0 KB
Newer Older
B
bellard 已提交
1
/*
2
 *  PowerPC emulation definitions for qemu.
3
 *
4
 *  Copyright (c) 2003-2007 Jocelyn Mayer
B
bellard 已提交
5 6 7 8 9 10 11 12 13 14 15 16
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
17
 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
B
bellard 已提交
18 19 20 21
 */
#if !defined (__PPC_H__)
#define __PPC_H__

22 23
#include "config.h"

B
bellard 已提交
24 25
#include "dyngen-exec.h"

26 27
#include "cpu.h"
#include "exec-all.h"
28

B
bellard 已提交
29 30
register struct CPUPPCState *env asm(AREG0);

31
#if !defined(CONFIG_USER_ONLY)
32
#include "softmmu_exec.h"
33
#endif /* !defined(CONFIG_USER_ONLY) */
B
bellard 已提交
34 35

#endif /* !defined (__PPC_H__) */