Diff for /gforth/savesys.fs between versions 1.3 and 1.6

version 1.3, 2000/09/23 15:46:58 version 1.6, 2003/03/09 15:16:52
Line 1 Line 1
 \ image dump                                           15nov94py  \ image dump                                           15nov94py
   
 \ Copyright (C) 1995,1997 Free Software Foundation, Inc.  \ Copyright (C) 1995,1997,2003 Free Software Foundation, Inc.
   
 \ This file is part of Gforth.  \ This file is part of Gforth.
   
Line 41 Line 41
 : dump-fi ( addr u -- )  : dump-fi ( addr u -- )
     w/o bin create-file throw >r      w/o bin create-file throw >r
     update-image-included-files      update-image-included-files
       update-image-order
     here forthstart - forthstart 2 cells + !      here forthstart - forthstart 2 cells + !
     forthstart      forthstart
     begin \ search for start of file ("#! " at a multiple of 8)      begin \ search for start of file ("#! " at a multiple of 8)
         8 -          8 -
         dup 3 s" #! " compare 0=          dup 3 s" #! " str=
     until ( imagestart )      until ( imagestart )
     here over - r@ write-file throw      here over - r@ write-file throw
     r> close-file throw ;      r> close-file throw ;

Removed from v.1.3  
changed lines
  Added in v.1.6


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>