diff options
author | Andreas Färber <afaerber@suse.de> | 2012-04-11 01:22:08 +0200 |
---|---|---|
committer | Andreas Färber <afaerber@suse.de> | 2012-04-12 01:07:41 +0200 |
commit | fc0ced2fbd8d40672fcdd2f655bbdcd3e278f3ab (patch) | |
tree | b8c56f6959905d36bd4b69d30c573e5fe838c13c /target-lm32/helper.c | |
parent | c1958aea51a14199d05d392edce932a956e1674d (diff) |
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>
Diffstat (limited to 'target-lm32/helper.c')
-rw-r--r-- | target-lm32/helper.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/target-lm32/helper.c b/target-lm32/helper.c index 78076e4603..3cf86d7b76 100644 --- a/target-lm32/helper.c +++ b/target-lm32/helper.c @@ -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; |