QEMU main repository: Please see https://www.qemu.org/docs/master/devel/submitting-a-patch.html for how to submit changes to QEMU. Pull Requests are ignored. Please only use release tarballs from the QEMU website. http://www.qemu.org
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
985 B
32 lines
985 B
#include "hw/hw.h"
|
|
#include "hw/boards.h"
|
|
|
|
static const VMStateDescription vmstate_env = {
|
|
.name = "env",
|
|
.version_id = 1,
|
|
.minimum_version_id = 1,
|
|
.fields = (VMStateField[]) {
|
|
VMSTATE_UINT32_ARRAY(regs, CPULM32State, 32),
|
|
VMSTATE_UINT32(pc, CPULM32State),
|
|
VMSTATE_UINT32(ie, CPULM32State),
|
|
VMSTATE_UINT32(icc, CPULM32State),
|
|
VMSTATE_UINT32(dcc, CPULM32State),
|
|
VMSTATE_UINT32(cc, CPULM32State),
|
|
VMSTATE_UINT32(eba, CPULM32State),
|
|
VMSTATE_UINT32(dc, CPULM32State),
|
|
VMSTATE_UINT32(deba, CPULM32State),
|
|
VMSTATE_UINT32_ARRAY(bp, CPULM32State, 4),
|
|
VMSTATE_UINT32_ARRAY(wp, CPULM32State, 4),
|
|
VMSTATE_END_OF_LIST()
|
|
}
|
|
};
|
|
|
|
const VMStateDescription vmstate_lm32_cpu = {
|
|
.name = "cpu",
|
|
.version_id = 1,
|
|
.minimum_version_id = 1,
|
|
.fields = (VMStateField[]) {
|
|
VMSTATE_STRUCT(env, LM32CPU, 1, vmstate_env, CPULM32State),
|
|
VMSTATE_END_OF_LIST()
|
|
}
|
|
};
|
|
|