Switch dump to FOR..NEXT.
This commit is contained in:
@ -19,7 +19,7 @@
|
|||||||
|
|
||||||
( Examine Memory )
|
( Examine Memory )
|
||||||
: dump ( a n -- )
|
: dump ( a n -- )
|
||||||
cr 0 do i 16 mod 0= if cr then dup i + c@ . loop drop cr ;
|
cr 0 swap for dup 16 mod 0= if cr then 2dup + c@ . 1+ next 2drop cr ;
|
||||||
|
|
||||||
( Print spaces )
|
( Print spaces )
|
||||||
: spaces ( n -- ) for aft space then next ;
|
: spaces ( n -- ) for aft space then next ;
|
||||||
|
|||||||
Reference in New Issue
Block a user