]> git.proxmox.com Git - qemu.git/blob - target-unicore32/machine.c
Merge remote-tracking branch 'afaerber/qom-cpu' into staging
[qemu.git] / target-unicore32 / machine.c
1 /*
2 * Generic machine functions for UniCore32 ISA
3 *
4 * Copyright (C) 2010-2012 Guan Xuetao
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation, or any later version.
9 * See the COPYING file in the top-level directory.
10 */
11 #include "hw/hw.h"
12
13 void cpu_save(QEMUFile *f, void *opaque)
14 {
15 hw_error("%s not supported yet.\n", __func__);
16 }
17
18 int cpu_load(QEMUFile *f, void *opaque, int version_id)
19 {
20 hw_error("%s not supported yet.\n", __func__);
21
22 return 0;
23 }