target-sh4: add SH7785 as CPU option
authoraurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162>
Sat, 13 Dec 2008 18:57:28 +0000 (18:57 +0000)
committeraurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162>
Sat, 13 Dec 2008 18:57:28 +0000 (18:57 +0000)
(Vladimir Prus)

git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6012 c046a42c-6fe2-441c-8c8c-71466251a162

target-sh4/cpu.h
target-sh4/translate.c

index 316eef9..687b703 100644 (file)
@@ -33,6 +33,7 @@
 #define SH_CPU_SH7750R (1 << 2)
 #define SH_CPU_SH7751  (1 << 3)
 #define SH_CPU_SH7751R (1 << 4)
+#define SH_CPU_SH7785  (1 << 5)
 #define SH_CPU_SH7750_ALL (SH_CPU_SH7750 | SH_CPU_SH7750S | SH_CPU_SH7750R)
 #define SH_CPU_SH7751_ALL (SH_CPU_SH7751 | SH_CPU_SH7751R)
 
index a41ec25..7822496 100644 (file)
@@ -221,7 +221,13 @@ static sh4_def_t sh4_defs[] = {
        .pvr = 0x04050005,
        .prr = 0x00000113,
        .cvr = 0x00110000,      /* Neutered caches, should be 0x20480000 */
-    },
+    }, {
+       .name = "SH7785",
+       .id = SH_CPU_SH7785,
+       .pvr = 0x10300700,
+       .prr = 0x00000200,
+       .cvr = 0x71440211,
+     },
 };
 
 static const sh4_def_t *cpu_sh4_find_by_name(const char *name)