N64FlashcartMenu
Loading...
Searching...
No Matches
cic.h
1#ifndef CIC_H__
2#define CIC_H__
3
4
5#include <stdint.h>
6
7
8#define IPL3_LENGTH (4032)
9
10
11typedef enum {
12 CIC_5101,
13 CIC_5167,
14 CIC_6101,
15 CIC_7102,
16 CIC_x102,
17 CIC_x103,
18 CIC_x105,
19 CIC_x106,
20 CIC_8301,
21 CIC_8302,
22 CIC_8303,
23 CIC_8401,
24 CIC_8501,
25 CIC_UNKNOWN,
26} cic_type_t;
27
28
29cic_type_t cic_detect (uint8_t *ipl3);
30uint8_t cic_get_seed (cic_type_t cic_type);
31
32
33#endif