mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 07:43:54 -06:00
Add moxie target code
Signed-off-by: Anthony Green <green@moxielogic.com> Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
This commit is contained in:
parent
f7c61bf8fc
commit
525bd324c2
10 changed files with 1531 additions and 0 deletions
28
target-moxie/machine.c
Normal file
28
target-moxie/machine.c
Normal file
|
@ -0,0 +1,28 @@
|
|||
#include "hw/hw.h"
|
||||
#include "hw/boards.h"
|
||||
|
||||
const VMStateDescription vmstate_moxie_cpu = {
|
||||
.name = "cpu",
|
||||
.version_id = CPU_SAVE_VERSION,
|
||||
.minimum_version_id = 1,
|
||||
.minimum_version_id_old = 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()
|
||||
}
|
||||
};
|
||||
|
||||
void cpu_save(QEMUFile *f, void *opaque)
|
||||
{
|
||||
vmstate_save_state(f, &vmstate_moxie_cpu, opaque);
|
||||
}
|
||||
|
||||
int cpu_load(QEMUFile *f, void *opaque, int version_id)
|
||||
{
|
||||
return vmstate_load_state(f, &vmstate_moxie_cpu, opaque, version_id);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue