mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-07-31 14:23:53 -06:00

Introduce a structure to hold handler specific to sysemu. Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20210517105140.1062037-15-f4bug@amsat.org> [rth: Squash "restrict hw/core/sysemu-cpu-ops.h" patch] Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
21 lines
464 B
C
21 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 */
|