2019-03-29 00:32:45 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <3ds/types.h>
|
|
|
|
#include <3ds/result.h>
|
|
|
|
#include <3ds/os.h>
|
2019-04-18 19:48:01 +02:00
|
|
|
#include <3ds/srv.h>
|
2019-03-29 00:32:45 +01:00
|
|
|
|
|
|
|
#define REG32(reg) (*(vu32 *)reg)
|
|
|
|
#define REG64(reg) (*(vu64 *)reg)
|
|
|
|
|
2020-07-12 22:26:02 +02:00
|
|
|
#define IS_N3DS (OS_KernelConfig->app_memtype >= 6) // APPMEMTYPE. Hacky but doesn't use APT
|
2019-03-29 00:32:45 +01:00
|
|
|
#define N3DS_TID_MASK 0xF0000000ULL
|
|
|
|
#define N3DS_TID_BIT 0x20000000ULL
|
|
|
|
|
|
|
|
#define TRY(expr) if(R_FAILED(res = (expr))) return res;
|
|
|
|
#define TRYG(expr, label) if(R_FAILED(res = (expr))) goto label;
|
|
|
|
|
|
|
|
#ifdef XDS
|
|
|
|
static void hexItoa(u64 number, char *out, u32 digits, bool uppercase)
|
|
|
|
{
|
|
|
|
const char hexDigits[] = "0123456789ABCDEF";
|
|
|
|
const char hexDigitsLowercase[] = "0123456789abcdef";
|
|
|
|
u32 i = 0;
|
|
|
|
|
|
|
|
while(number > 0)
|
|
|
|
{
|
|
|
|
out[digits - 1 - i++] = uppercase ? hexDigits[number & 0xF] : hexDigitsLowercase[number & 0xF];
|
|
|
|
number >>= 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
while(i < digits) out[digits - 1 - i++] = '0';
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static void __attribute__((noinline)) panic(Result res)
|
|
|
|
{
|
|
|
|
#ifndef XDS
|
|
|
|
(void)res;
|
|
|
|
__builtin_trap();
|
|
|
|
#else
|
|
|
|
char buf[32] = {0};
|
|
|
|
hexItoa(res, buf, 8, false);
|
|
|
|
svcOutputDebugString(buf, 8);
|
|
|
|
svcBreak(USERBREAK_PANIC);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline Result assertSuccess(Result res)
|
|
|
|
{
|
|
|
|
if(R_FAILED(res)) {
|
|
|
|
panic(res);
|
|
|
|
}
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline Result notifySubscribers(u32 notificationId)
|
|
|
|
{
|
|
|
|
Result res = srvPublishToSubscriber(notificationId, 0);
|
|
|
|
if (res == (Result)0xD8606408) {
|
|
|
|
panic(res);
|
|
|
|
}
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline s64 nsToTicks(s64 ns)
|
|
|
|
{
|
|
|
|
return ns * SYSCLOCK_ARM11 / (1000 * 1000 * 1000LL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline s64 ticksToNs(s64 ticks)
|
|
|
|
{
|
|
|
|
return 1000 * 1000 * 1000LL * ticks / SYSCLOCK_ARM11;
|
|
|
|
}
|