diff options
author | Igor Mammedov | 2017-10-05 15:50:55 +0200 |
---|---|---|
committer | Eduardo Habkost | 2017-10-27 16:03:54 +0200 |
commit | 974e58d2105f1b728232ce354441f95ff0349388 (patch) | |
tree | 828ee63fa347c3618cf3f04d5dbf8b5d52cc6256 /target/sh4/cpu-qom.h | |
parent | sh4: shix: use generic cpu_model parsing (diff) | |
download | qemu-974e58d2105f1b728232ce354441f95ff0349388.tar.gz qemu-974e58d2105f1b728232ce354441f95ff0349388.tar.xz qemu-974e58d2105f1b728232ce354441f95ff0349388.zip |
sh4: cleanup cpu type name composition
introduce SUPERH_CPU_TYPE_NAME macro and use it to construct
cpu type names. While at it move cpu type_infos into one
array and register it directly with type_init_from_array()
instead of custom superh_cpu_register_types()
Signed-off-by: Igor Mammedov <imammedo@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Message-Id: <1507211474-188400-22-git-send-email-imammedo@redhat.com>
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Diffstat (limited to 'target/sh4/cpu-qom.h')
-rw-r--r-- | target/sh4/cpu-qom.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/target/sh4/cpu-qom.h b/target/sh4/cpu-qom.h index 01abb206e4..17deeb661b 100644 --- a/target/sh4/cpu-qom.h +++ b/target/sh4/cpu-qom.h @@ -24,9 +24,9 @@ #define TYPE_SUPERH_CPU "superh-cpu" -#define TYPE_SH7750R_CPU "sh7750r-" TYPE_SUPERH_CPU -#define TYPE_SH7751R_CPU "sh7751r-" TYPE_SUPERH_CPU -#define TYPE_SH7785_CPU "sh7785-" TYPE_SUPERH_CPU +#define TYPE_SH7750R_CPU SUPERH_CPU_TYPE_NAME("sh7750r") +#define TYPE_SH7751R_CPU SUPERH_CPU_TYPE_NAME("sh7751r") +#define TYPE_SH7785_CPU SUPERH_CPU_TYPE_NAME("sh7785") #define SUPERH_CPU_CLASS(klass) \ OBJECT_CLASS_CHECK(SuperHCPUClass, (klass), TYPE_SUPERH_CPU) |