mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 07:13:54 -06:00
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:
parent
868d585ace
commit
540635ba65
28 changed files with 1854 additions and 76 deletions
|
@ -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");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue