force correct ppc64 cpu

git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3651 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
bellard 2007-11-15 15:37:50 +00:00
parent 4dbc422b55
commit 7ded4f523a
1 changed files with 4 additions and 0 deletions

View File

@ -2032,7 +2032,11 @@ int main(int argc, char **argv)
cpu_model = "24Kf";
#endif
#elif defined(TARGET_PPC)
#ifdef TARGET_PPC64
cpu_model = "970";
#else
cpu_model = "750";
#endif
#else
cpu_model = "any";
#endif