mirror of
https://github.com/kanjitalk755/macemu.git
synced 2025-01-12 16:30:44 +00:00
Stop abort()'ing when we fail to recognize the underlying processor, assume
an obsolete i386 instead. Keep report on stderr though.
This commit is contained in:
parent
ef5a50e2af
commit
ba5ef9cd31
@ -3799,14 +3799,14 @@ raw_init_cpu(void)
|
||||
break;
|
||||
}
|
||||
if (c->x86_processor == X86_PROCESSOR_max) {
|
||||
fprintf(stderr, "Error: unknown processor type\n");
|
||||
c->x86_processor = X86_PROCESSOR_I386;
|
||||
fprintf(stderr, "Error: unknown processor type, assuming i386\n");
|
||||
fprintf(stderr, " Family : %d\n", c->x86);
|
||||
fprintf(stderr, " Model : %d\n", c->x86_model);
|
||||
fprintf(stderr, " Mask : %d\n", c->x86_mask);
|
||||
fprintf(stderr, " Vendor : %s [%d]\n", c->x86_vendor_id, c->x86_vendor);
|
||||
if (c->x86_brand_id)
|
||||
fprintf(stderr, " BrandID : %02x\n", c->x86_brand_id);
|
||||
abort();
|
||||
}
|
||||
|
||||
/* Have CMOV support? */
|
||||
|
Loading…
x
Reference in New Issue
Block a user