mirror of https://gitee.com/openkylin/qemu.git
16 lines
314 B
C
16 lines
314 B
C
|
/*
|
||
|
* i386 TCG CPU class initialization
|
||
|
*
|
||
|
* Copyright 2020 SUSE LLC
|
||
|
*
|
||
|
* 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 TCG_CPU_H
|
||
|
#define TCG_CPU_H
|
||
|
|
||
|
void tcg_cpu_common_class_init(CPUClass *cc);
|
||
|
|
||
|
#endif /* TCG_CPU_H */
|