projects
/
jump.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
dol: create target object folders when generating
[jump.git]
/
minidol
/
esrc
/
Square.h
1
#ifndef SQUARE_H
2
#define SQUARE_H
3
4
#include <dol.h>
5
6
#define PORT_INPUT "0"
7
#define PORT_OUTPUT "1"
8
9
#define LENGTH 8
10
11
typedef struct _local_states {
12
int index;
13
} Square_State;
14
15
void Square_init(DOLProcess *);
16
int Square_fire(DOLProcess *);
17
18
#endif