summaryrefslogtreecommitdiff
path: root/Source/UnitTests/AudioJitTests.cpp
diff options
context:
space:
mode:
authornakeee <nakeee@gmail.com>2010-04-25 14:24:55 +0000
committernakeee <nakeee@gmail.com>2010-04-25 14:24:55 +0000
commit64447eab2cafb88eea889d5e3dee7f0e1325bf50 (patch)
tree102522831d0b31bb0ae8f8a8300bc7203068f8bf /Source/UnitTests/AudioJitTests.cpp
parent8d5c9f30ada8604a6608e1b18d8bd95060fbe8f4 (diff)
DSP Jit more minor fixes
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5405 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/UnitTests/AudioJitTests.cpp')
-rw-r--r--Source/UnitTests/AudioJitTests.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/Source/UnitTests/AudioJitTests.cpp b/Source/UnitTests/AudioJitTests.cpp
index d192bd82cd..cfabaeeb6c 100644
--- a/Source/UnitTests/AudioJitTests.cpp
+++ b/Source/UnitTests/AudioJitTests.cpp
@@ -77,6 +77,14 @@ void sbset()
tester.Report();
}
+void nx_s()
+{
+ DSPJitTester tester(0x8000, 0x0020);
+ tester.AddTestData(DSP_REG_AR0);
+ tester.AddTestData(DSP_REG_ACL0);
+ tester.TestAll(true);
+ tester.Report();
+}
void AudioJitTests()
{
DSPJitTester::Initialize();
@@ -91,6 +99,7 @@ void AudioJitTests()
nx_ir();
nx_dr();
nx_nr();
+ nx_s();
}
//required to be able to link against DSPCore