diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2021-10-26 22:23:29 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2021-10-26 22:23:29 -0700 |
commit | e419abe61579ecebb6055a19cec1e35e0538df9a (patch) | |
tree | d3f6637a907a2b20c806315430150a4dce448085 /tutorial | |
parent | c3eab11fd159bed340fcd4db0be22cf7d2cba994 (diff) | |
download | mu-e419abe61579ecebb6055a19cec1e35e0538df9a.tar.gz |
.
Diffstat (limited to 'tutorial')
-rw-r--r-- | tutorial/index.md | 5 |
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 |