SGDK
A free and open development kit for the Sega Mega Drive
Loading...
Searching...
No Matches
tab_cnv.h
1#ifndef _TAB_CNV_H_
2#define _TAB_CNV_H_
3
4extern const u8 cnv_2to4_tab[0x4];
5extern const u8 cnv_2to8_tab[0x4];
6extern const u16 cnv_2to16_tab[0x4];
7extern const u32 cnv_2to32_tab[0x4];
8
9extern const u8 cnv_4to8_tab[0x10];
10extern const u16 cnv_4to16_tab[0x10];
11extern const u32 cnv_4to32_tab[0x10];
12
13extern const u16 cnv_8to16_tab[0x100];
14extern const u32 cnv_8to32_tab[0x100];
15
16extern const u8 cnv_bcd_tab[100];
17
18
19#endif // _TAB_CNV_H_
unsigned long u32
Definition types.h:105
unsigned short u16
Definition types.h:100
unsigned char u8
Definition types.h:95