mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 07:43:54 -06:00
target-lm32: QOM'ify CPU
Embed CPULM32State as first member of QOM LM32CPU. Let CPUClass::reset() call cpu_state_reset() for now. Signed-off-by: Andreas Färber <afaerber@suse.de> Acked-by: Michael Walle <michael@walle.cc>
This commit is contained in:
parent
c1958aea51
commit
fc0ced2fbd
5 changed files with 136 additions and 1 deletions
|
@ -194,6 +194,7 @@ static uint32_t cfg_by_def(const LM32Def *def)
|
|||
|
||||
CPULM32State *cpu_lm32_init(const char *cpu_model)
|
||||
{
|
||||
LM32CPU *cpu;
|
||||
CPULM32State *env;
|
||||
const LM32Def *def;
|
||||
static int tcg_initialized;
|
||||
|
@ -203,7 +204,8 @@ CPULM32State *cpu_lm32_init(const char *cpu_model)
|
|||
return NULL;
|
||||
}
|
||||
|
||||
env = g_malloc0(sizeof(CPULM32State));
|
||||
cpu = LM32_CPU(object_new(TYPE_LM32_CPU));
|
||||
env = &cpu->env;
|
||||
|
||||
env->features = def->features;
|
||||
env->num_bps = def->num_breakpoints;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue