summaryrefslogtreecommitdiff
path: root/Source/UnitTests/Core/DSP/DSPAssemblyTest.cpp
diff options
context:
space:
mode:
authorLeo Lam <leolino.lam@gmail.com>2017-07-04 13:43:45 +0200
committerGitHub <noreply@github.com>2017-07-04 13:43:45 +0200
commit365892c61c7eb90feb636cbdbf3ecf23895521bf (patch)
tree123c7cf1313c930b4cbc09f9126d01df8b6b4b67 /Source/UnitTests/Core/DSP/DSPAssemblyTest.cpp
parent5a41bfaf6f8de404dc60e2ce313d675e67342115 (diff)
parent7dab92d8b568db8b4fc208614d23ae696029389a (diff)
Merge pull request #5667 from ligfx/cleanupdspdisassembler
DSPDisassembler: various code cleanups
Diffstat (limited to 'Source/UnitTests/Core/DSP/DSPAssemblyTest.cpp')
-rw-r--r--Source/UnitTests/Core/DSP/DSPAssemblyTest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/UnitTests/Core/DSP/DSPAssemblyTest.cpp b/Source/UnitTests/Core/DSP/DSPAssemblyTest.cpp
index 5d8a7838ce..4dd3395a46 100644
--- a/Source/UnitTests/Core/DSP/DSPAssemblyTest.cpp
+++ b/Source/UnitTests/Core/DSP/DSPAssemblyTest.cpp
@@ -23,7 +23,7 @@ static bool RoundTrippableDissassemble(const std::vector<u16>& code, std::string
settings.show_pc = false;
DSP::DSPDisassembler disasm(settings);
- return disasm.Disassemble(0x0000, code, 0x0000, text);
+ return disasm.Disassemble(code, text);
}
// This test goes from text ASM to binary to text ASM and once again back to binary.