Code provision for n32/n64 mips userland emulation. Not functional yet.

git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3284 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
ths 2007-09-30 01:58:33 +00:00
parent 868d585ace
commit 540635ba65
28 changed files with 1854 additions and 76 deletions

View file

@ -2145,7 +2145,11 @@ int main(int argc, char **argv)
/* Choose and initialise CPU */
if (cpu_model == NULL)
#if defined(TARGET_MIPSN32) || defined(TARGET_MIPS64)
cpu_model = "20Kc";
#else
cpu_model = "24Kf";
#endif
mips_find_by_name(cpu_model, &def);
if (def == NULL)
cpu_abort(env, "Unable to find MIPS CPU definition\n");