pokediamond/arm9/lib/include/CP_context.h
2020-05-17 17:43:10 +01:00

19 lines
297 B
C

//
// 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