From 2ee7030776461ee835dbbd44149f90ae79e7d4c5 Mon Sep 17 00:00:00 2001 From: red031000 Date: Sun, 3 May 2020 01:42:55 +0100 Subject: temp OS_entropy --- arm9/lib/include/OS_entropy.h | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 arm9/lib/include/OS_entropy.h (limited to 'arm9/lib/include/OS_entropy.h') diff --git a/arm9/lib/include/OS_entropy.h b/arm9/lib/include/OS_entropy.h new file mode 100644 index 00000000..f4eef4b5 --- /dev/null +++ b/arm9/lib/include/OS_entropy.h @@ -0,0 +1,10 @@ +// +// Created by red031000 on 2020-05-03. +// + +#ifndef POKEDIAMOND_OS_ENTROPY_H +#define POKEDIAMOND_OS_ENTROPY_H + +void OS_GetLowEntropyData(u32 * arr); + +#endif //POKEDIAMOND_OS_ENTROPY_H -- cgit v1.2.3 From 4f6c75ac8381a7a3c2902c97870066ee90f1d320 Mon Sep 17 00:00:00 2001 From: red031000 Date: Sun, 3 May 2020 19:22:26 +0100 Subject: match OS_GetLowEntropyData --- arm9/lib/include/OS_entropy.h | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'arm9/lib/include/OS_entropy.h') diff --git a/arm9/lib/include/OS_entropy.h b/arm9/lib/include/OS_entropy.h index f4eef4b5..b4695a72 100644 --- a/arm9/lib/include/OS_entropy.h +++ b/arm9/lib/include/OS_entropy.h @@ -5,6 +5,23 @@ #ifndef POKEDIAMOND_OS_ENTROPY_H #define POKEDIAMOND_OS_ENTROPY_H +#include "consts.h" + void OS_GetLowEntropyData(u32 * arr); +typedef struct NVRAMConfig{ + u8 ncd[110]; // todo: typeof NVRAMConfigData + u16 saveCount; + u16 rc16; +} NVRAMConfig; + +extern vu64 OSi_TickCounter; + +extern u16 OS_GetTickLo(); + +static inline s32 GX_GetVCount() +{ + return reg_GX_VCOUNT; +} + #endif //POKEDIAMOND_OS_ENTROPY_H -- cgit v1.2.3