22 lines
464 B
C
22 lines
464 B
C
![]() |
/*
|
||
|
* CPU operations specific to system emulation
|
||
|
*
|
||
|
* Copyright (c) 2012 SUSE LINUX Products GmbH
|
||
|
*
|
||
|
* This work is licensed under the terms of the GNU GPL, version 2 or later.
|
||
|
* See the COPYING file in the top-level directory.
|
||
|
*/
|
||
|
|
||
|
#ifndef SYSEMU_CPU_OPS_H
|
||
|
#define SYSEMU_CPU_OPS_H
|
||
|
|
||
|
#include "hw/core/cpu.h"
|
||
|
|
||
|
/*
|
||
|
* struct SysemuCPUOps: System operations specific to a CPU class
|
||
|
*/
|
||
|
typedef struct SysemuCPUOps {
|
||
|
} SysemuCPUOps;
|
||
|
|
||
|
#endif /* SYSEMU_CPU_OPS_H */
|