home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / forth / compiler / fpc / source / p4_11bs.seq < prev    next >
Text File  |  1990-04-14  |  253b  |  15 lines

  1. \ Balraj Sidhu   Set: 14D4
  2. \ Comp 462 - Forth
  3. \ Date: April 12, 1990
  4. \ Problem 4.11
  5.  
  6.  
  7. create table 12 allot
  8. table 12 255 fill   \ fill table with hex FF
  9.  
  10. \ clears 6 16-bit values
  11. : clear-table ( -- )
  12.         11 0 do 0 i table + ! loop ;
  13.  
  14.  
  15.