forked from Mirror/GodMode9
- added very simple 12-bit precision fixed point arithmetic code as a fast float replacement
13 lines
177 B
C
Executable File
13 lines
177 B
C
Executable File
#pragma once
|
|
|
|
#include <types.h>
|
|
|
|
typedef struct {
|
|
s16 cpad_x, cpad_y;
|
|
s16 ts_x, ts_y;
|
|
} CODEC_Input;
|
|
|
|
void CODEC_Init(void);
|
|
|
|
void CODEC_Get(CODEC_Input *input);
|