qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH] Add m68k_cpu_list()


From: Laurent Vivier
Subject: [Qemu-devel] [PATCH] Add m68k_cpu_list()
Date: Tue, 14 Apr 2009 23:14:03 +0200

This patch adds to m68k target the missing m68k_cpu_list():

$ ./m68k-softmmu/qemu-system-m68k -cpu ?
m68k m5206
m68k m5208
m68k cfv4e
m68k any

Signed-off-by: Laurent Vivier <address@hidden>

---
 target-m68k/cpu.h    |    3 +++
 target-m68k/helper.c |    9 +++++++++
 2 files changed, 12 insertions(+)

Index: trunk/target-m68k/cpu.h
===================================================================
--- trunk.orig/target-m68k/cpu.h        2009-04-14 22:40:48.000000000 +0200
+++ trunk/target-m68k/cpu.h     2009-04-14 22:42:16.000000000 +0200
@@ -199,6 +199,8 @@
     return (env->features & (1u << feature)) != 0;
 }
 
+void m68k_cpu_list(FILE *f, int (*cpu_fprintf)(FILE *f, const char *fmt, ...));
+
 void register_m68k_insns (CPUM68KState *env);
 
 #ifdef CONFIG_USER_ONLY
@@ -213,6 +215,7 @@
 #define cpu_exec cpu_m68k_exec
 #define cpu_gen_code cpu_m68k_gen_code
 #define cpu_signal_handler cpu_m68k_signal_handler
+#define cpu_list m68k_cpu_list
 
 /* MMU modes definitions */
 #define MMU_MODE0_SUFFIX _kernel
Index: trunk/target-m68k/helper.c
===================================================================
--- trunk.orig/target-m68k/helper.c     2009-04-14 22:42:21.000000000 +0200
+++ trunk/target-m68k/helper.c  2009-04-14 22:59:56.000000000 +0200
@@ -54,6 +54,15 @@
     {NULL, 0},
 };
 
+void m68k_cpu_list(FILE *f, int (*cpu_fprintf)(FILE *f, const char *fmt, ...))
+{
+    unsigned int i;
+
+    for (i = 0; m68k_cpu_defs[i].name; i++) {
+        (*cpu_fprintf)(f, "m68k %s\n", m68k_cpu_defs[i].name);
+    }
+}
+
 static int fpu_gdb_get_reg(CPUState *env, uint8_t *mem_buf, int n)
 {
     if (n < 8) {

reply via email to

[Prev in Thread] Current Thread [Next in Thread]