-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathspec.c
More file actions
41 lines (26 loc) · 744 Bytes
/
spec.c
File metadata and controls
41 lines (26 loc) · 744 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/*
Spinbot speces people should know.
if you need to make new data structer put it here
so people will know how to use it
Our spim conventions
$s5 - $s7 and $t7 - $t10 are not to be used by
or stored away in funtions. They are saved for use as defind here:
$s5: scan iteration
$t8 and $t10: used in sort_list, should be restored when interrupting
$t9: flag for float initialization
$s7: constant value = 15
$s6: curr scan location
more to come use on code you need to run alot.
MAKE SURE that new nodes added to the list have their next point to 0!
*/
struct token {
int x; //0
int y; //4
int zone; //12
};
struct scanData{
scanOutput * [10];
};
struct scanOutput{
void * [15] linkedLists
};