aboutsummaryrefslogtreecommitdiff
path: root/amforth-6.5/common/lib/forth2012/blocks/list-dump.frt
blob: 28a0df75c9313a10bc741d6c82208ee6de89b49d (plain)
1
2
3
4
5
6
7
8
9
10

\ a trivial list in hexdump format
#require dump.frt

: list 
   dup scr ! 
   buffer blocksize dump 
   scr @ updated? 0= if ." not " then ." modified" cr
;