Diff for /gforth/fi2c.fs between versions 1.1 and 1.3

version 1.1, 1998/11/08 23:08:04 version 1.3, 1998/12/11 22:54:27
Line 1 Line 1
 \ Convert image to C include file  \ Convert image to C include file
   
   \ Copyright (C) 1998 Free Software Foundation, Inc.
   
   \ This file is part of Gforth.
   
   \ Gforth is free software; you can redistribute it and/or
   \ modify it under the terms of the GNU General Public License
   \ as published by the Free Software Foundation; either version 2
   \ of the License, or (at your option) any later version.
   
   \ This program is distributed in the hope that it will be useful,
   \ but WITHOUT ANY WARRANTY; without even the implied warranty of
   \ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   \ GNU General Public License for more details.
   
   \ You should have received a copy of the GNU General Public License
   \ along with this program; if not, write to the Free Software
   \ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
   
 0 Value image  0 Value image
 0 Value bitmap  0 Value bitmap
   
 Create magicbuf 8 allot  Create magicbuf 8 allot
   
   Variable bswap?
   Variable tchars
   
   : bswap ( n -- n' )  bswap? @ 0= ?EXIT  0
       over 24 rshift $FF       and or
       over  8 rshift $FF00     and or
       over  8 lshift $FF0000   and or
       over 24 lshift $FF000000 and or nip ;
   
 : search-magic ( fd -- )  >r  : search-magic ( fd -- )  >r
     BEGIN  magicbuf 8 r@ read-file throw  8 =  WHILE      BEGIN  magicbuf 8 r@ read-file throw  8 =  WHILE
         magicbuf s" Gforth1" tuck compare 0=  UNTIL          magicbuf s" Gforth" tuck compare 0=  UNTIL
     ELSE  true abort" No magic found"  THEN      ELSE  true abort" No magic found"  THEN
       magicbuf 6 + c@ digit? drop tchars !
       magicbuf 7 + c@ 1 and 0= [ pad off 1 pad ! pad c@ 1 = ] Literal = bswap? !
     rdrop ;      rdrop ;
   
 Create image-header  4 cells allot  Create image-header  4 cells allot
Line 17  Variable bitmap-chars Line 46  Variable bitmap-chars
   
 : read-header ( fd -- )  : read-header ( fd -- )
     image-header 4 cells rot read-file throw drop      image-header 4 cells rot read-file throw drop
     image-header 2 cells + @ dup cell / image-cells ! 1- 8 cells / 1+ bitmap-chars !      image-header 2 cells + @ bswap tchars @ *
       dup cell / image-cells ! 1- 8 cells / 1+ bitmap-chars !
     image-cells @ cells allocate throw to image      image-cells @ cells allocate throw to image
     bitmap-chars @ allocate throw to bitmap ;      bitmap-chars @ allocate throw to bitmap ;
   
Line 32  Variable bitmap-chars Line 62  Variable bitmap-chars
   
 : .image ( -- )  : .image ( -- )
     image-cells @ 0 ?DO      image-cells @ 0 ?DO
         I 4 + I' min I ?DO  space image I cells + @ .08x ." ," LOOP cr          I 4 + I' min I ?DO  space image I cells + @ bswap .08x ." ," LOOP cr
         4 +LOOP ;          4 +LOOP ;
   
 : .reloc ( -- )  : .reloc ( -- )
Line 47  Variable bitmap-chars Line 77  Variable bitmap-chars
     r@ read-dictionary r@ read-bitmap r> close-file throw ;      r@ read-dictionary r@ read-bitmap r> close-file throw ;
   
 : .imagesize ( -- )  : .imagesize ( -- )
     image-header 3 cells + @ 1 cells / .08x ;      image-header 3 cells + @ bswap 1 cells / tchars @ * .08x ;
   
 : .relocsize ( -- )  : .relocsize ( -- )
     bitmap-chars @ .08x ;      bitmap-chars @ .08x ;

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


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