mirror of
https://github.com/Polprzewodnikowy/SummerCart64.git
synced 2024-11-29 16:54:14 +01:00
17 lines
262 B
C
17 lines
262 B
C
#ifndef CIC_H__
|
|
#define CIC_H__
|
|
|
|
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
|
|
|
|
void cic_reset_parameters (void);
|
|
void cic_set_parameters (uint32_t *args);
|
|
void cic_set_dd_mode (bool enabled);
|
|
void cic_hw_init (void);
|
|
void cic_task (void);
|
|
|
|
|
|
#endif
|