Diff for /gforth/filedump.fs between versions 1.6 and 1.10

version 1.6, 1998/12/08 22:02:42 version 1.10, 2003/08/25 14:17:44
Line 1 Line 1
 #! /usr/local/lib/gforth/0.2.0/kernel.fi  #! /usr/local/lib/gforth/0.2.0/kernel.fi
 \ file hex dump  \ file hex dump
   
 \ Copyright (C) 1997 Free Software Foundation, Inc.  \ Copyright (C) 1997,2002,2003 Free Software Foundation, Inc.
   
 \ This file is part of Gforth.  \ This file is part of Gforth.
   
Line 17 Line 17
   
 \ You should have received a copy of the GNU General Public License  \ You should have received a copy of the GNU General Public License
 \ along with this program; if not, write to the Free Software  \ along with this program; if not, write to the Free Software
 \ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  \ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
   
 Create buffer $10 allot  Create buf $10 allot
   
 : dumpline ( addr handle -- flag )  : dumpline ( addr handle -- flag )
   buffer $10 rot read-file throw    buf $10 rot read-file throw
   dup /dump !  $10 <> swap 6 u.r ." : "  buffer .line cr ;    dup /dump !  $10 <> swap 6 u.r ." : "  buf .line cr ;
   
 : init  cr $10 base ! ;  : init  cr $10 base ! ;
   

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


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