From de99bf9f845e48e69ce84015d9cd7d72a842c290 Mon Sep 17 00:00:00 2001 From: Brad Nelson Date: Sun, 17 Jul 2022 18:18:21 -0700 Subject: [PATCH] Fix inaccurate comment. --- common/tier1a_forth.fs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/tier1a_forth.fs b/common/tier1a_forth.fs index 5695b11..2c93596 100644 --- a/common/tier1a_forth.fs +++ b/common/tier1a_forth.fs @@ -51,7 +51,7 @@ : 2@ ( a -- lo hi ) dup @ swap cell+ @ ; : 2! ( lo hi a -- ) dup >r cell+ ! r> ! ; -( Dictionary ) +( Heap Words ) : here ( -- a ) 'sys @ ; : allot ( n -- ) 'sys +! ; : , ( n -- ) here ! cell allot ;