dol: initial dol commit
[jump.git] / dol / examples / example1 / src / printarray.h
1 #ifndef PRINTARRAY_H
2 #define PRINTARRAY_H
3
4 #include <dol.h>
5 #include "global.h"
6
7 #define PORT_IN1 1
8 #define PORT_IN2 2
9
10 typedef struct _local_states {
11     int index;
12 } Printarray_State;
13
14 void printarray_init(DOLProcess *);
15 int printarray_fire(DOLProcess *);
16
17 #endif