1*8b80bd28SPhilippe Mathieu-Daudé /* 2*8b80bd28SPhilippe Mathieu-Daudé * CPU operations specific to system emulation 3*8b80bd28SPhilippe Mathieu-Daudé * 4*8b80bd28SPhilippe Mathieu-Daudé * Copyright (c) 2012 SUSE LINUX Products GmbH 5*8b80bd28SPhilippe Mathieu-Daudé * 6*8b80bd28SPhilippe Mathieu-Daudé * This work is licensed under the terms of the GNU GPL, version 2 or later. 7*8b80bd28SPhilippe Mathieu-Daudé * See the COPYING file in the top-level directory. 8*8b80bd28SPhilippe Mathieu-Daudé */ 9*8b80bd28SPhilippe Mathieu-Daudé 10*8b80bd28SPhilippe Mathieu-Daudé #ifndef SYSEMU_CPU_OPS_H 11*8b80bd28SPhilippe Mathieu-Daudé #define SYSEMU_CPU_OPS_H 12*8b80bd28SPhilippe Mathieu-Daudé 13*8b80bd28SPhilippe Mathieu-Daudé #include "hw/core/cpu.h" 14*8b80bd28SPhilippe Mathieu-Daudé 15*8b80bd28SPhilippe Mathieu-Daudé /* 16*8b80bd28SPhilippe Mathieu-Daudé * struct SysemuCPUOps: System operations specific to a CPU class 17*8b80bd28SPhilippe Mathieu-Daudé */ 18*8b80bd28SPhilippe Mathieu-Daudé typedef struct SysemuCPUOps { 19*8b80bd28SPhilippe Mathieu-Daudé } SysemuCPUOps; 20*8b80bd28SPhilippe Mathieu-Daudé 21*8b80bd28SPhilippe Mathieu-Daudé #endif /* SYSEMU_CPU_OPS_H */ 22