mirror of
https://github.com/nineties/planckforth
synced 2024-12-25 21:58:22 +01:00
fix stack notation of do-loop
This commit is contained in:
parent
f0809a45df
commit
f321addd29
1 changed files with 2 additions and 2 deletions
|
@ -1471,14 +1471,14 @@ do-stack 16 cells + do-sp !
|
|||
do-sp @ @
|
||||
;
|
||||
|
||||
\ compile: ( -- dest mark )
|
||||
\ compile: ( -- do: dest mark )
|
||||
: do
|
||||
compile >r \ save start
|
||||
compile >r \ save limit
|
||||
here >do do-mark >do
|
||||
; immediate
|
||||
|
||||
: leave ( -- orig mark )
|
||||
: leave ( -- do: orig mark )
|
||||
compile branch
|
||||
here >do
|
||||
0 , \ fill dummy offset
|
||||
|
|
Loading…
Reference in a new issue