]> Git Repo - qemu.git/blame - target-moxie/machine.c
hw: do not use VMSTATE_*TL
[qemu.git] / target-moxie / machine.c
CommitLineData
d24688fb 1#include "qemu/osdep.h"
525bd324
AG
2#include "hw/hw.h"
3#include "hw/boards.h"
302fe123 4#include "machine.h"
525bd324
AG
5
6const VMStateDescription vmstate_moxie_cpu = {
7 .name = "cpu",
183543cd 8 .version_id = 1,
525bd324 9 .minimum_version_id = 1,
35d08458 10 .fields = (VMStateField[]) {
525bd324
AG
11 VMSTATE_UINT32(flags, CPUMoxieState),
12 VMSTATE_UINT32_ARRAY(gregs, CPUMoxieState, 16),
13 VMSTATE_UINT32_ARRAY(sregs, CPUMoxieState, 256),
14 VMSTATE_UINT32(pc, CPUMoxieState),
15 VMSTATE_UINT32(cc_a, CPUMoxieState),
16 VMSTATE_UINT32(cc_b, CPUMoxieState),
17 VMSTATE_END_OF_LIST()
18 }
19};
This page took 0.173542 seconds and 4 git commands to generate.