summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorSonic Dreamcaster <alejandro.asenjo88@gmail.com>2024-12-02 15:58:27 -0300
committerSonic Dreamcaster <alejandro.asenjo88@gmail.com>2024-12-02 15:58:27 -0300
commitf328d08b7093df51c303e3bb495076c2c9636e22 (patch)
tree3284d359f5f9d72166e9cbc1971fc4c0d50913aa /include
parentdbe3abc748095d5ee0b692f2cade9079f254cd55 (diff)
use old abi for aInterleaveImpl
Diffstat (limited to 'include')
-rw-r--r--include/PR/abi.h13
1 files changed, 6 insertions, 7 deletions
diff --git a/include/PR/abi.h b/include/PR/abi.h
index f218a347..bb371233 100644
--- a/include/PR/abi.h
+++ b/include/PR/abi.h
@@ -322,13 +322,12 @@ typedef short ENVMIX_STATE[40];
_a->words.w1 = (u32)(m); \
}
-#define aInterleave(pkt, o, l, r, c) \
-{ \
- Acmd *_a = (Acmd *)pkt; \
- \
- _a->words.w0 = (_SHIFTL(A_INTERLEAVE, 24, 8) | \
- _SHIFTL(c >> 4, 16, 8) | _SHIFTL(o, 0, 16)); \
- _a->words.w1 = _SHIFTL(l, 16, 16) | _SHIFTL(r, 0, 16); \
+#define aInterleave(pkt, l, r) \
+{ \
+ Acmd *_a = (Acmd *)pkt; \
+ \
+ _a->words.w0 = _SHIFTL(A_INTERLEAVE, 24, 8); \
+ _a->words.w1 = _SHIFTL(l, 16, 16) | _SHIFTL(r, 0, 16); \
}
#define aInterl(pkt, dmemi, dmemo, count) \