[gforth] / gforth / filedump.fs  

gforth: gforth/filedump.fs

File: [gforth] / gforth / filedump.fs (download)
Revision: 1.4, Tue Jul 16 20:57:08 1996 UTC (16 years, 10 months ago) by pazsan
Branch: MAIN
Changes since 1.3: +1 -1 lines
SPECIAL: to create special "state-smart" words

#! /usr/local/lib/gforth/0.2.0/kernal.fi
\ file hex dump

Create buffer $10 allot

: dumpline ( addr handle -- flag )
  buffer $10 rot read-file throw
  dup /dump !  $10 <> swap 6 u.r ." : "  buffer .line cr ;

: init  cr $10 base ! ;

: filedump  ( addr count -- )  init r/o bin open-file throw >r
  0  BEGIN  $10 bounds  r@ dumpline  UNTIL  drop
  r> close-file throw ;

script? [IF]
   : alldump argc @ 2 ?DO I arg 2dup type ." :" filedump LOOP ;
   alldump bye
[THEN]

CVS Admin

Powered by ViewCVS 1.0-dev
(Powered by ViewCVS)

ViewCVS and CVS Help