Commit bd04c6feb96fd750ab5d495523ad478f9c90db71

Authored by ths
1 parent 39524770

Change 20Kc PRID to a later version.


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2980 c046a42c-6fe2-441c-8c8c-71466251a162
Showing 1 changed file with 3 additions and 1 deletions
target-mips/translate_init.c
... ... @@ -182,7 +182,9 @@ static mips_def_t mips_defs[] =
182 182 },
183 183 {
184 184 .name = "20Kc",
185   - .CP0_PRid = 0x00018200,
  185 + /* We emulate a later version of the 20Kc, earlier ones had a broken
  186 + WAIT instruction. */
  187 + .CP0_PRid = 0x000182a0,
186 188 .CP0_Config0 = MIPS_CONFIG0 | (0x2 << CP0C0_AT) | (1 << CP0C0_VI),
187 189 .CP0_Config1 = MIPS_CONFIG1 | (1 << CP0C1_FP) | (47 << CP0C1_MMU) |
188 190 (2 << CP0C1_IS) | (4 << CP0C1_IL) | (3 << CP0C1_IA) |
... ...