2021-04-08 17:46:20 +02:00
|
|
|
#ifndef _global_h_
|
|
|
|
|
#define _global_h_
|
|
|
|
|
|
|
|
|
|
#include "dolphin/types.h"
|
|
|
|
|
|
2025-01-16 09:37:39 -08:00
|
|
|
#define VERSION_GCN_USA 0
|
|
|
|
|
#define VERSION_GCN_PAL 1
|
|
|
|
|
#define VERSION_GCN_JPN 2
|
2025-04-25 10:53:30 -07:00
|
|
|
#define VERSION_WII_USA_R0 3
|
|
|
|
|
#define VERSION_WII_USA_R2 4
|
|
|
|
|
#define VERSION_WII_PAL 5
|
|
|
|
|
#define VERSION_WII_JPN 6
|
|
|
|
|
#define VERSION_WII_KOR 7
|
|
|
|
|
#define VERSION_WII_USA_KIOSK 8
|
|
|
|
|
#define VERSION_WII_PAL_KIOSK 9
|
|
|
|
|
#define VERSION_SHIELD 10
|
|
|
|
|
#define VERSION_SHIELD_PROD 11
|
|
|
|
|
#define VERSION_SHIELD_DEBUG 12
|
|
|
|
|
|
|
|
|
|
#define PLATFORM_GCN (VERSION >= VERSION_GCN_USA && VERSION <= VERSION_GCN_JPN)
|
|
|
|
|
#define PLATFORM_WII (VERSION >= VERSION_WII_USA_R0 && VERSION <= VERSION_WII_PAL_KIOSK)
|
|
|
|
|
#define PLATFORM_SHIELD (VERSION >= VERSION_SHIELD && VERSION <= VERSION_SHIELD_DEBUG)
|
2025-01-16 09:37:39 -08:00
|
|
|
|
2025-02-10 11:20:42 -08:00
|
|
|
#define ALIGN_DECL(ALIGNMENT) __attribute__((aligned(ALIGNMENT)))
|
|
|
|
|
|
2025-09-28 16:11:07 -04:00
|
|
|
#define ARRAY_SIZE(o) (s32)(sizeof(o) / sizeof(o[0]))
|
|
|
|
|
#define ARRAY_SIZEU(o) (sizeof(o) / sizeof(o[0]))
|
2021-04-08 17:46:20 +02:00
|
|
|
|
|
|
|
|
// Align X to the previous N bytes (N must be power of two)
|
|
|
|
|
#define ALIGN_PREV(X, N) ((X) & ~((N)-1))
|
|
|
|
|
// Align X to the next N bytes (N must be power of two)
|
|
|
|
|
#define ALIGN_NEXT(X, N) ALIGN_PREV(((X) + (N)-1), N)
|
|
|
|
|
#define IS_ALIGNED(X, N) (((X) & ((N)-1)) == 0)
|
|
|
|
|
#define IS_NOT_ALIGNED(X, N) (((X) & ((N)-1)) != 0)
|
|
|
|
|
|
2024-10-10 07:29:58 -07:00
|
|
|
#define ROUND(n, a) (((u32)(n) + (a)-1) & ~((a)-1))
|
|
|
|
|
#define TRUNC(n, a) (((u32)(n)) & ~((a)-1))
|
|
|
|
|
|
2021-04-08 17:46:20 +02:00
|
|
|
#define JUT_EXPECT(...)
|
|
|
|
|
|
|
|
|
|
#define _SDA_BASE_(dummy) 0
|
|
|
|
|
#define _SDA2_BASE_(dummy) 0
|
|
|
|
|
|
2024-10-12 22:43:10 -06:00
|
|
|
#ifdef __MWERKS__
|
2021-06-13 00:20:45 +02:00
|
|
|
#define GLUE(a, b) a##b
|
|
|
|
|
#define GLUE2(a, b) GLUE(a, b)
|
2025-01-16 09:37:39 -08:00
|
|
|
|
2025-06-27 03:14:58 -07:00
|
|
|
#if VERSION == VERSION_GCN_USA
|
2021-06-13 00:20:45 +02:00
|
|
|
#define STATIC_ASSERT(cond) typedef char GLUE2(static_assertion_failed, __LINE__)[(cond) ? 1 : -1]
|
2021-11-09 23:09:38 +01:00
|
|
|
#else
|
|
|
|
|
#define STATIC_ASSERT(...)
|
|
|
|
|
#endif
|
2025-01-16 09:37:39 -08:00
|
|
|
#else
|
|
|
|
|
#define STATIC_ASSERT(...)
|
|
|
|
|
#endif
|
2021-06-13 00:20:45 +02:00
|
|
|
|
2025-09-26 21:50:46 -04:00
|
|
|
// Intrinsics
|
2021-04-08 17:46:20 +02:00
|
|
|
extern int __cntlzw(unsigned int);
|
2025-09-26 21:50:46 -04:00
|
|
|
extern int __rlwimi(int, int, int, int, int);
|
|
|
|
|
extern void __dcbz(void*, int);
|
|
|
|
|
extern void __sync();
|
|
|
|
|
extern int __abs(int);
|
2021-04-08 17:46:20 +02:00
|
|
|
|
2025-01-27 01:01:05 -05:00
|
|
|
#ifndef __MWERKS__
|
|
|
|
|
void* __memcpy(void*, const void*, int);
|
|
|
|
|
#endif
|
|
|
|
|
|
2024-03-22 05:56:28 -07:00
|
|
|
#define FAST_DIV(x, n) (x >> (n / 2))
|
|
|
|
|
|
2025-01-09 05:45:46 -08:00
|
|
|
#define SQUARE(x) ((x) * (x))
|
|
|
|
|
|
2024-10-10 07:29:58 -07:00
|
|
|
// hack to make strings with no references compile properly
|
|
|
|
|
#define DEAD_STRING(s) OSReport(s)
|
|
|
|
|
|
2025-02-10 11:20:42 -08:00
|
|
|
#define READU32_BE(ptr, offset) \
|
|
|
|
|
(((u32)ptr[offset] << 24) | ((u32)ptr[offset + 1] << 16) | ((u32)ptr[offset + 2] << 8) | (u32)ptr[offset + 3]);
|
|
|
|
|
|
2021-04-08 17:46:20 +02:00
|
|
|
#endif
|