first commit

This commit is contained in:
murdle
2026-03-01 02:38:58 +02:00
commit 19250b9db4
19111 changed files with 4358159 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
#pragma once
#ifdef _CONTENT_PACKAGE
#define spu_assert(a) {}
#define spu_print(...) {}
#else
#include <spu_printf.h>
#define spu_print spu_printf
#define spu_assert(a) { \
if(!(a)) \
{ \
spu_printf( "===================================\n" \
"spu_assert : \t%s \n Func : \t%s \n File : \t%s \n Line : \t%d\n" \
"===================================\n", #a, __PRETTY_FUNCTION__, __FILE__, __LINE__); \
si_stop(2); \
} \
}
#endif // _CONTENT_PACKAGE