mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-12-11 16:00:50 -07:00
target-mips: microMIPS ASE support
Add instruction decoding for the microMIPS ASE. All we do is decode and then forward to the existing gen_* routines. Signed-off-by: Nathan Froyd <froydnj@codesourcery.com> Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
This commit is contained in:
parent
620e48f663
commit
3c824109da
4 changed files with 2531 additions and 5 deletions
|
|
@ -160,6 +160,15 @@ DEF_HELPER_1(emt, tl, tl)
|
|||
DEF_HELPER_1(dvpe, tl, tl)
|
||||
DEF_HELPER_1(evpe, tl, tl)
|
||||
#endif /* !CONFIG_USER_ONLY */
|
||||
|
||||
/* microMIPS functions */
|
||||
DEF_HELPER_3(lwm, void, tl, tl, i32);
|
||||
DEF_HELPER_3(swm, void, tl, tl, i32);
|
||||
#ifdef TARGET_MIPS64
|
||||
DEF_HELPER_3(ldm, void, tl, tl, i32);
|
||||
DEF_HELPER_3(sdm, void, tl, tl, i32);
|
||||
#endif
|
||||
|
||||
DEF_HELPER_2(fork, void, tl, tl)
|
||||
DEF_HELPER_1(yield, tl, tl)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue