mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 17:23:56 -06:00
target-mips: Add ASE DSP testcases
Add MIPS ASE DSP testcases. Signed-off-by: Jia Liu <proljc@gmail.com> Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
This commit is contained in:
parent
af13ae03f8
commit
d70080c4e3
487 changed files with 19151 additions and 0 deletions
16
tests/tcg/mips/mips64-dsp/head.S
Normal file
16
tests/tcg/mips/mips64-dsp/head.S
Normal file
|
@ -0,0 +1,16 @@
|
|||
/*
|
||||
* Startup Code for MIPS64 CPU-core
|
||||
*
|
||||
*/
|
||||
.text
|
||||
.globl _start
|
||||
.align 4
|
||||
_start:
|
||||
ori $2, $2, 0xffff
|
||||
sll $2, $2, 16
|
||||
ori $2, $2, 0xffff
|
||||
mtc0 $2, $12, 0
|
||||
jal main
|
||||
|
||||
end:
|
||||
b end
|
Loading…
Add table
Add a link
Reference in a new issue