diff options
-rw-r--r-- | i386/i386at/model_dep.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/i386/i386at/model_dep.c b/i386/i386at/model_dep.c index f915db1..dcf506d 100644 --- a/i386/i386at/model_dep.c +++ b/i386/i386at/model_dep.c @@ -575,8 +575,9 @@ void c_boot_entry(vm_offset_t bi) switch (cpu_type) { - case 3: default: + printf("warning: unknown cpu type %d, assuming i386\n", cpu_type); + case 3: machine_slot[0].cpu_type = CPU_TYPE_I386; break; case 4: |