mirror of
https://github.com/Polprzewodnikowy/SummerCart64.git
synced 2025-01-22 09:21:10 +01:00
16 lines
222 B
C
16 lines
222 B
C
|
#ifndef ISV_H__
|
||
|
#define ISV_H__
|
||
|
|
||
|
|
||
|
#include <stdbool.h>
|
||
|
#include <stdint.h>
|
||
|
|
||
|
|
||
|
bool isv_set_address (uint32_t address);
|
||
|
uint32_t isv_get_address (void);
|
||
|
void isv_init (void);
|
||
|
void isv_process (void);
|
||
|
|
||
|
|
||
|
#endif
|