Use MUSY_DEBUG for debug prints

Former-commit-id: 07e9934d0a
This commit is contained in:
Phillip Stephens 2023-02-27 23:31:23 -08:00
parent d74a026c82
commit e7cc4cd57f
2 changed files with 3 additions and 9 deletions

View File

@ -1,8 +1,6 @@
#include "musyx/musyx_priv.h"
extern void OSReport(const char*, ...);
extern void DCStoreRange(void* addr, u32 nBytes);
static volatile const u16 itdOffTab[128] = {

View File

@ -138,9 +138,7 @@ void aramInit(unsigned long length) {
aramWrite = aramBase + sizeof(s16) * 640;
aramUploadCallback = NULL;
InitStreamBuffers();
#if _DEBUG
OSReport("MusyX ARAM handler initialized\n");
#endif
MUSY_DEBUG("MusyX ARAM handler initialized\n");
}
void aramExit() {}
@ -259,9 +257,7 @@ unsigned char aramAllocateStreamBuffer(unsigned long len) {
}
if (oSb == NULL) {
#if _DEBUG
OSReport("No stream buffer slots available or ARAM.\n\n");
#endif
MUSY_DEBUG("No stream buffer slots available or ARAM.\n\n");
return 0xFF;
}