summaryrefslogtreecommitdiff
path: root/jefs.fs
diff options
context:
space:
mode:
Diffstat (limited to 'jefs.fs')
-rw-r--r--jefs.fs3
1 files changed, 3 insertions, 0 deletions
diff --git a/jefs.fs b/jefs.fs
index 778cc8a..9f74791 100644
--- a/jefs.fs
+++ b/jefs.fs
@@ -33,6 +33,9 @@ hex : ret, c3 c, ; decimal
: literal [compile] lit ; immediate
: constant create [compile] lit ret, ;
: variable 1 cells allot create [compile] lit ret, ;
+\ maybe i made bad design decisions, this is CREATE but it pushes a pointer to just after its definition. for arrays and the like
+\ does not use LIT because we want to fill it in After
+: make create here @ 18 + [compile] lit ret, ;
\ FLOW CONTROL {{{
\ jump helpers from forth83 (got them from pforth tho ehehe)