blob: 7c39aaddf4e7dd73a879201d5d55ccc4d2aa0482 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
//
// Created by red031000 on 2020-05-03.
//
#ifndef POKEDIAMOND_OS_ENTROPY_H
#define POKEDIAMOND_OS_ENTROPY_H
#include "registers.h"
void OS_GetLowEntropyData(u32 * arr);
extern vu64 OSi_TickCounter;
extern u16 OS_GetTickLo(void);
static inline s32 GX_GetVCount(void)
{
return reg_GX_VCOUNT;
}
#endif //POKEDIAMOND_OS_ENTROPY_H
|