mirror of
https://github.com/Polprzewodnikowy/SummerCart64.git
synced 2025-01-04 01:02:01 +01:00
17 lines
263 B
C
17 lines
263 B
C
|
#ifndef CIC_H__
|
||
|
#define CIC_H__
|
||
|
|
||
|
|
||
|
#include <stdbool.h>
|
||
|
#include <stdint.h>
|
||
|
|
||
|
|
||
|
void cic_set_dd_mode (bool enabled);
|
||
|
void cic_set_seed (uint8_t seed);
|
||
|
void cic_set_checksum (uint8_t *checksum);
|
||
|
void cic_hw_init (void);
|
||
|
void cic_task (void);
|
||
|
|
||
|
|
||
|
#endif
|