Statistics
| Branch: | Revision:

root / target-s390x / machine.c @ defb0e31

History | View | Annotate | Download (930 Bytes)

1 10c339a0 Alexander Graf
/*
2 10c339a0 Alexander Graf
 * QEMU S390x machine definitions
3 10c339a0 Alexander Graf
 *
4 10c339a0 Alexander Graf
 * Copyright (c) 2009 Alexander Graf <agraf@suse.de>
5 10c339a0 Alexander Graf
 *
6 10c339a0 Alexander Graf
 * This library is free software; you can redistribute it and/or
7 10c339a0 Alexander Graf
 * modify it under the terms of the GNU Lesser General Public
8 10c339a0 Alexander Graf
 * License as published by the Free Software Foundation; either
9 10c339a0 Alexander Graf
 * version 2 of the License, or (at your option) any later version.
10 10c339a0 Alexander Graf
 *
11 10c339a0 Alexander Graf
 * This library is distributed in the hope that it will be useful,
12 10c339a0 Alexander Graf
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 10c339a0 Alexander Graf
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 10c339a0 Alexander Graf
 * Lesser General Public License for more details.
15 10c339a0 Alexander Graf
 *
16 10c339a0 Alexander Graf
 * You should have received a copy of the GNU Lesser General Public
17 10c339a0 Alexander Graf
 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
18 10c339a0 Alexander Graf
 */
19 10c339a0 Alexander Graf
20 10c339a0 Alexander Graf
#include "hw/hw.h"
21 10c339a0 Alexander Graf
#include "hw/boards.h"
22 10c339a0 Alexander Graf
23 10c339a0 Alexander Graf
void cpu_save(QEMUFile *f, void *opaque)
24 10c339a0 Alexander Graf
{
25 10c339a0 Alexander Graf
}
26 10c339a0 Alexander Graf
27 10c339a0 Alexander Graf
int cpu_load(QEMUFile *f, void *opaque, int version_id)
28 10c339a0 Alexander Graf
{
29 10c339a0 Alexander Graf
    return 0;
30 10c339a0 Alexander Graf
}