about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--tutorial/index.md5
1 files changed, 5 insertions, 0 deletions
diff --git a/tutorial/index.md b/tutorial/index.md
index 0ea92a3f..bd27300f 100644
--- a/tutorial/index.md
+++ b/tutorial/index.md
@@ -217,6 +217,11 @@ If you're stuck, as always, [my door is open](http://akkartik.name/contact).
 You can also see a solution in the repository, though I won't link to it lest
 it encourage peeking.
 
+Where possible, try to store variables in registers rather than the stack. The
+two main reasons to use the stack are:
+* when you need lots of variables and run out of registers, and
+* when you have types that don't fit in 32 bits.
+
 ## Task 6: getting used to a few error messages
 
 If you're like me, seeing an error message can feel a bit stressful. It
t/092write-int.subx?h=main&id=7a5832204a80ff43d23c3a384c26e2217ef5908b'>7a583220 ^
96838051 ^









bfcc0f85 ^
96838051 ^
6070c23e ^
96838051 ^










7a583220 ^
96838051 ^














7dac9ade ^
96838051 ^






































































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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121