]> git.proxmox.com Git - mirror_qemu.git/blobdiff - target-arm/helper.c
Fix typo in help output.
[mirror_qemu.git] / target-arm / helper.c
index 093acc9af42543a66f4878996adacc43fea4fb16..36f5fe073f1c8e2897074156c44dd1de594b3c32 100644 (file)
@@ -47,6 +47,16 @@ static const struct arm_cpu_t arm_cpu_names[] = {
     { 0, NULL}
 };
 
+void arm_cpu_list(void)
+{
+    int i;
+
+    printf ("Available CPUs:\n");
+    for (i = 0; arm_cpu_names[i].name; i++) {
+        printf("  %s\n", arm_cpu_names[i].name);
+    }
+}
+
 void cpu_arm_set_model(CPUARMState *env, const char *name)
 {
     int i;