mirror of
https://github.com/Polprzewodnikowy/SummerCart64.git
synced 2025-01-14 13:39: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_init (void);
|
|
void cic_process (void);
|
|
|
|
|
|
#endif
|