]> Git Repo - qemu.git/blob - target/moxie/machine.c
target/arm: Use tcg_gen_extract_i32 for shifter_out_im
[qemu.git] / target / moxie / machine.c
1 #include "qemu/osdep.h"
2 #include "cpu.h"
3 #include "hw/hw.h"
4 #include "hw/boards.h"
5 #include "machine.h"
6 #include "migration/cpu.h"
7
8 const VMStateDescription vmstate_moxie_cpu = {
9     .name = "cpu",
10     .version_id = 1,
11     .minimum_version_id = 1,
12     .fields = (VMStateField[]) {
13         VMSTATE_UINT32(flags, CPUMoxieState),
14         VMSTATE_UINT32_ARRAY(gregs, CPUMoxieState, 16),
15         VMSTATE_UINT32_ARRAY(sregs, CPUMoxieState, 256),
16         VMSTATE_UINT32(pc, CPUMoxieState),
17         VMSTATE_UINT32(cc_a, CPUMoxieState),
18         VMSTATE_UINT32(cc_b, CPUMoxieState),
19         VMSTATE_END_OF_LIST()
20     }
21 };
This page took 0.025196 seconds and 4 git commands to generate.