mirror of https://gitee.com/openkylin/qemu.git
Add m68k_cpu_list()
This patch adds to m68k target the missing m68k_cpu_list(): $ ./m68k-softmmu/qemu-system-m68k -cpu ? m5206 m5208 cfv4e any Signed-off-by: Laurent Vivier <laurent@vivier.eu>
This commit is contained in:
parent
39b6efc806
commit
009a4356a7
|
@ -199,6 +199,8 @@ static inline int m68k_feature(CPUM68KState *env, int feature)
|
||||||
return (env->features & (1u << feature)) != 0;
|
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);
|
void register_m68k_insns (CPUM68KState *env);
|
||||||
|
|
||||||
#ifdef CONFIG_USER_ONLY
|
#ifdef CONFIG_USER_ONLY
|
||||||
|
@ -213,6 +215,7 @@ void register_m68k_insns (CPUM68KState *env);
|
||||||
#define cpu_exec cpu_m68k_exec
|
#define cpu_exec cpu_m68k_exec
|
||||||
#define cpu_gen_code cpu_m68k_gen_code
|
#define cpu_gen_code cpu_m68k_gen_code
|
||||||
#define cpu_signal_handler cpu_m68k_signal_handler
|
#define cpu_signal_handler cpu_m68k_signal_handler
|
||||||
|
#define cpu_list m68k_cpu_list
|
||||||
|
|
||||||
/* MMU modes definitions */
|
/* MMU modes definitions */
|
||||||
#define MMU_MODE0_SUFFIX _kernel
|
#define MMU_MODE0_SUFFIX _kernel
|
||||||
|
|
|
@ -54,6 +54,15 @@ static m68k_def_t m68k_cpu_defs[] = {
|
||||||
{NULL, 0},
|
{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, "%s\n", m68k_cpu_defs[i].name);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
static int fpu_gdb_get_reg(CPUState *env, uint8_t *mem_buf, int n)
|
static int fpu_gdb_get_reg(CPUState *env, uint8_t *mem_buf, int n)
|
||||||
{
|
{
|
||||||
if (n < 8) {
|
if (n < 8) {
|
||||||
|
|
Loading…
Reference in New Issue