aboutsummaryrefslogtreecommitdiff
path: root/target-moxie/machine.c
blob: 912b79139a5a1adedf980f6c74a961aff36d5f6c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include "qemu/osdep.h"
#include "hw/hw.h"
#include "hw/boards.h"
#include "machine.h"

const VMStateDescription vmstate_moxie_cpu = {
    .name = "cpu",
    .version_id = 1,
    .minimum_version_id = 1,
    .fields = (VMStateField[]) {
        VMSTATE_UINT32(flags, CPUMoxieState),
        VMSTATE_UINT32_ARRAY(gregs, CPUMoxieState, 16),
        VMSTATE_UINT32_ARRAY(sregs, CPUMoxieState, 256),
        VMSTATE_UINT32(pc, CPUMoxieState),
        VMSTATE_UINT32(cc_a, CPUMoxieState),
        VMSTATE_UINT32(cc_b, CPUMoxieState),
        VMSTATE_END_OF_LIST()
    }
};