blob: d1e0062c9e14d5c0069c8842d3eaa934b8a78471 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
//
// Created by red031000 on 2020-05-17.
//
#ifndef POKEDIAMOND_CP_CONTEXT_H
#define POKEDIAMOND_CP_CONTEXT_H
#include "types.h"
typedef struct CPContext {
u64 div_numer;
u64 div_denom;
u64 sqrt;
u16 div_mode;
u16 sqrt_mode;
} CPContext;
#endif //POKEDIAMOND_CP_CONTEXT_H
|