Compare commits

...

2 Commits

Author SHA1 Message Date
Clyne 08e9b769f4
add create, does>, etc 3 weeks ago
Clyne bf8436019d
add test suite 3 weeks ago

3
.gitmodules vendored

@ -0,0 +1,3 @@
[submodule "forth2012-test-suite"]
path = forth2012-test-suite
url = https://github.com/gerryjackson/forth2012-test-suite

@ -106,3 +106,13 @@
: j postpone 2r> ['] r> , postpone r@ ['] swap ,
['] >r , ['] -rot , postpone 2>r ; immediate
: create : here [ 4 cells ] literal + postpone literal postpone ; 0 , ;
: >body [ 2 cells ] literal + @ ;
: _does> latest dup cell+ @ [ 5 cells ] literal + +
['] _jmp over ! cell+ ! ;
: does> here 4 cells + postpone literal ['] _does> , 0 , ; immediate
: variable create cell allot ;
: constant create , does> @ ;

@ -0,0 +1 @@
Subproject commit 45b7ecc1e37d8fdd1bd9a29ec52a15bf7ac69d7f
Loading…
Cancel
Save