diff options
Diffstat (limited to 'Source/Core/DSPCore/Src/DSPIntExtOps.cpp')
| -rw-r--r-- | Source/Core/DSPCore/Src/DSPIntExtOps.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Source/Core/DSPCore/Src/DSPIntExtOps.cpp b/Source/Core/DSPCore/Src/DSPIntExtOps.cpp index 0486d2a238..ce4f29585e 100644 --- a/Source/Core/DSPCore/Src/DSPIntExtOps.cpp +++ b/Source/Core/DSPCore/Src/DSPIntExtOps.cpp @@ -28,6 +28,13 @@ // registers will wrap in odd ways, dictated by the corresponding wrapping // register, WR0-3. +// Needs comments. +inline static void writeToBackLog(int i, int idx, u16 value) +{ + writeBackLog[i] = value; + writeBackLogIdx[i] = idx; +} + namespace DSPInterpreter { |
