mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-08 18:23:57 -06:00
target-mips: correct the values in the DSP tests
Five tests files for DSP instructions had wrong expected values in the tests. This change fixes this, and this has been cross-checked by running the same test binaries on Malta 74K board. Signed-off-by: Petar Jovanovic <petar.jovanovic@imgtec.com> Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
This commit is contained in:
parent
dbe49aea76
commit
beb3faaa00
5 changed files with 37 additions and 33 deletions
|
@ -9,8 +9,8 @@ int main()
|
|||
|
||||
rs = 0xBC0123AD;
|
||||
rt = 0x01643721;
|
||||
resulth = 0x04;
|
||||
resultl = 0xAEA3E09B;
|
||||
resulth = 0x00000005;
|
||||
resultl = 0x1CE5E09B;
|
||||
resultdsp = 0x00;
|
||||
__asm
|
||||
("mthi %0, $ac1\n\t"
|
||||
|
@ -27,12 +27,12 @@ int main()
|
|||
assert(ach == resulth);
|
||||
assert(acl == resultl);
|
||||
|
||||
ach = 0x99f13005;
|
||||
ach = 0x99F13005;
|
||||
acl = 0x51730062;
|
||||
rs = 0x80008000;
|
||||
rt = 0x80008000;
|
||||
|
||||
resulth = 0x99f13004;
|
||||
resulth = 0x99F13004;
|
||||
resultl = 0x51730064;
|
||||
resultdsp = 0x01;
|
||||
__asm
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue