diff options
author | pbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-03-08 03:15:18 +0000 |
---|---|---|
committer | pbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-03-08 03:15:18 +0000 |
commit | 5adb4839e3c35382832bedc7155b3317b7b7d560 (patch) | |
tree | 974b3d8d697b76312050d2ee460f4c1574d7fd3c /vl.c | |
parent | 3371d27293dc40159069d6593da22ba77ac8513c (diff) |
Fix typo in help output.
List ARM cpus.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2475 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'vl.c')
-rw-r--r-- | vl.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -6355,7 +6355,7 @@ void help(void) "\n" "Standard options:\n" "-M machine select emulated machine (-M ? for list)\n" - "-cpu cpu select CPU (-C ? for list)\n" + "-cpu cpu select CPU (-cpu ? for list)\n" "-fda/-fdb file use 'file' as floppy disk 0/1 image\n" "-hda/-hdb file use 'file' as IDE hard disk 0/1 image\n" "-hdc/-hdd file use 'file' as IDE hard disk 2/3 image\n" @@ -7004,6 +7004,8 @@ int main(int argc, char **argv) if (optarg[0] == '?') { #if defined(TARGET_PPC) ppc_cpu_list(stdout, &fprintf); +#elif defined(TARGET_ARM) + arm_cpu_list(); #endif exit(1); } else { |