From b948d2fca8bb7e4b00381372e9b0476393056fdb Mon Sep 17 00:00:00 2001 From: Joe <8309575+joekreydt@users.noreply.github.com> Date: Sat, 18 Jan 2020 16:42:28 -0500 Subject: [PATCH] Change memory location explanation to 1577 I love this tutorial! One thing I noticed was that my first variable's memory location is 1577 rather than 1000. --- index.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.markdown b/index.markdown index 78e0ce3..4594700 100644 --- a/index.markdown +++ b/index.markdown @@ -558,8 +558,8 @@ stack: {% include editor.html size="small"%} -You should see the value `1000` on the stack. This Forth implementation arbitrarily -starts storing variables at the memory location `1000`. +You should see the value `1577` on the stack. This Forth implementation arbitrarily +starts storing variables at the memory location `1577`. The word `!` stores a value at the memory location referenced by a variable, and the word `@` fetches the value from a memory location: