]> git.proxmox.com Git - mirror_qemu.git/blame - target-unicore32/machine.c
Rename target_phys_addr_t to hwaddr
[mirror_qemu.git] / target-unicore32 / machine.c
CommitLineData
4f23a1e6
GX
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
13void cpu_save(QEMUFile *f, void *opaque)
14{
15 hw_error("%s not supported yet.\n", __func__);
16}
17
18int cpu_load(QEMUFile *f, void *opaque, int version_id)
19{
20 hw_error("%s not supported yet.\n", __func__);
21
22 return 0;
23}