home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / t / timwin.zip / TIMWIN2.EXE / pak / INI.CMD < prev    next >
OS/2 REXX Batch file  |  1992-08-05  |  1KB  |  28 lines

  1. ;ini  --  erases the frame grabber (fg)
  2. ;         initializes the LUTs (input & output)   
  3. ;         loads upper-case character set
  4. ;27-5-90  adapted for TIM 3.30 
  5. ;********************************************************
  6. era fg
  7. ;ver
  8. lut 1 1 1                ;input LUT: lineair
  9. lut 2 2 5                ;LUT 2 (false colours)
  10. lut 2 3 1                ;LUT 3 (graphics)
  11. lut 2 3 7 1              ;red in bit 1
  12. lut 2 4 1                ;LUT 4 (CLP)
  13. lut 2 4 7 1              ;red in bit 1
  14. lut 2 4 8 2              ;green in bit 2
  15. lut 2 4 9 3              ;blue in bit 3
  16. lut 2 1 1                ;LUT 1 (standard black/white)
  17. lcset standard
  18. print "Character set (standard) installed"
  19. print "Output look-up tables initialised:"
  20. print "  LUT 1:  standard black & white"
  21. print "  LUT 2:  false colours in 3 MSbits"
  22. print "  LUT 3:  LSbit = red (for graphics purposes)"
  23. print "  LUT 4:  3 colours in LSbits (for CLP-operations)"
  24. print "          bit 3 = blue  (highest priority)"
  25. print "          bit 2 = green (lower pr.)"
  26. print "          bit 1 = red   (lowest pr.)"
  27. stop
  28.