mirror of
https://github.com/bmartini/zynq-axis.git
synced 2024-09-05 19:19:27 +08:00
16 lines
196 B
C
16 lines
196 B
C
|
#ifndef INTERFACE_H
|
||
|
#define INTERFACE_H
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
#define REGISTER_NB 32
|
||
|
|
||
|
int axis_init(const char *path);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
#endif /* INTERFACE_H */
|