diff options
-rw-r--r-- | hw/arm/highbank.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/hw/arm/highbank.c b/hw/arm/highbank.c index f66d57b..2a88b84 100644 --- a/hw/arm/highbank.c +++ b/hw/arm/highbank.c @@ -233,6 +233,11 @@ static void calxeda_init(QEMUMachineInitArgs *args, enum cxmachines machine) ARMCPU *cpu; Error *err = NULL; + if (!oc) { + error_report("Unable to find CPU definition"); + exit(1); + } + cpu = ARM_CPU(object_new(object_class_get_name(oc))); object_property_set_int(OBJECT(cpu), MPCORE_PERIPHBASE, "reset-cbar", |