mirror of
https://github.com/qemu/qemu.git
synced 2024-12-18 17:53:40 +08:00
12 lines
163 B
C
12 lines
163 B
C
|
#include "hw/hw.h"
|
||
|
#include "hw/boards.h"
|
||
|
|
||
|
void cpu_save(QEMUFile *f, void *opaque)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
int cpu_load(QEMUFile *f, void *opaque, int version_id)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|