| 3446 |
void help(void) |
void help(void) |
| 3447 |
{ |
{ |
| 3448 |
printf("QEMU PC emulator version " QEMU_VERSION ", Copyright (c) 2003 Fabrice Bellard\n" |
printf("QEMU PC emulator version " QEMU_VERSION ", Copyright (c) 2003 Fabrice Bellard\n" |
| 3449 |
"usage: qemu [options] [disk_image]\n" |
"usage: %s [options] [disk_image]\n" |
| 3450 |
"\n" |
"\n" |
| 3451 |
"'disk_image' is a raw hard image image for IDE hard disk 0\n" |
"'disk_image' is a raw hard image image for IDE hard disk 0\n" |
| 3452 |
"\n" |
"\n" |
| 3472 |
"-L path set the directory for the BIOS and VGA BIOS\n" |
"-L path set the directory for the BIOS and VGA BIOS\n" |
| 3473 |
"\n" |
"\n" |
| 3474 |
"During emulation, use C-a h to get terminal commands:\n", |
"During emulation, use C-a h to get terminal commands:\n", |
| 3475 |
DEFAULT_NETWORK_SCRIPT, DEFAULT_GDBSTUB_PORT); |
#ifdef CONFIG_SOFTMMU |
| 3476 |
|
"qemu", |
| 3477 |
|
#else |
| 3478 |
|
"qemu-fast", |
| 3479 |
|
#endif |
| 3480 |
|
DEFAULT_NETWORK_SCRIPT, |
| 3481 |
|
DEFAULT_GDBSTUB_PORT); |
| 3482 |
term_print_help(); |
term_print_help(); |
| 3483 |
|
#ifndef CONFIG_SOFTMMU |
| 3484 |
|
printf("\n" |
| 3485 |
|
"NOTE: this version of QEMU is faster but it needs slightly patched OSes to\n" |
| 3486 |
|
"work. Please use the 'qemu' executable to have a more accurate (but slower)\n" |
| 3487 |
|
"PC emulation.\n"); |
| 3488 |
|
#endif |
| 3489 |
exit(1); |
exit(1); |
| 3490 |
} |
} |
| 3491 |
|
|