dol: initial dol commit
[jump.git] / dol / examples / example1 / src / arraygen.h
1 #ifndef ARRAYGEN_H
2 #define ARRAYGEN_H
3
4 #include <dol.h>
5 #include "global.h"
6
7 #define  PORT_OUT1 1
8 #define  PORT_OUT2 2
9
10
11 typedef struct _local_states {
12     int index;
13 } Arraygen_State;
14
15 void arraygen_init(DOLProcess *);
16 int arraygen_fire(DOLProcess *);
17
18 #endif