]> Git Repo - qemu.git/commitdiff
linux-user: Use the 5KEf processor for 64-bit emulation
authorMaciej W. Rozycki <[email protected]>
Thu, 20 Nov 2014 16:00:54 +0000 (16:00 +0000)
committerLeon Alrae <[email protected]>
Tue, 16 Dec 2014 12:45:20 +0000 (12:45 +0000)
Replace the 20Kc original MIPS64 ISA processor used for 64-bit user
emulation with the 5KEf processor that implements the MIPS64r2 ISA,
complementing the choice of the 24Kf processor for 32-bit emulation.

Signed-off-by: Maciej W. Rozycki <[email protected]>
Reviewed-by: Leon Alrae <[email protected]>
Signed-off-by: Leon Alrae <[email protected]>
linux-user/main.c

index 186ee4d54f98f8530a010624680cb0c8c10200be..67b02316c16cc074cbede22fcb4437da19ab6797 100644 (file)
@@ -3905,7 +3905,7 @@ int main(int argc, char **argv, char **envp)
 #endif
 #elif defined(TARGET_MIPS)
 #if defined(TARGET_ABI_MIPSN32) || defined(TARGET_ABI_MIPSN64)
-        cpu_model = "20Kc";
+        cpu_model = "5KEf";
 #else
         cpu_model = "24Kf";
 #endif
This page took 0.030773 seconds and 4 git commands to generate.