diff options
author | Michael Walle <michael@walle.cc> | 2011-09-16 00:26:05 +0200 |
---|---|---|
committer | Michael Walle <michael@walle.cc> | 2011-10-03 12:44:22 +0200 |
commit | 27f930c5f0c26fbb845d8071e3bca5f127891ecd (patch) | |
tree | 47ef248fd46633fb850bd9b71196f9df45b54e63 /target-lm32 | |
parent | d11cf8cc80d946dfc9a23597cd9a0bb1c487cfa7 (diff) |
lm32: add missing qemu_init_vcpu() call
Signed-off-by: Michael Walle <michael@walle.cc>
Diffstat (limited to 'target-lm32')
-rw-r--r-- | target-lm32/helper.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/target-lm32/helper.c b/target-lm32/helper.c index 014fd8de06..fc0b444d81 100644 --- a/target-lm32/helper.c +++ b/target-lm32/helper.c @@ -218,6 +218,7 @@ CPUState *cpu_lm32_init(const char *cpu_model) cpu_exec_init(env); cpu_reset(env); + qemu_init_vcpu(env); if (!tcg_initialized) { tcg_initialized = 1; |