home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 13 / 13.iso / p / p120 / 3.ddi / DEVICES / PXLWEXP.SEF < prev    next >
Encoding:
Text File  |  1989-10-16  |  4.6 KB  |  114 lines

  1. BEGIN DDIF
  2. -------------------------------------------------------------------------
  3. -- DEVICE INFORMATION FILE  for Pixelworks Clipper High Resolution     --
  4. --                          display controller board                   --
  5. --                                                                     --
  6. -------------------------------------------------------------------------
  7. -- 10-16-89 JSM Incorporated Pixelworks' and 4D's latest changes
  8. -- 01/12/88 NCC Added code line 6 for display list overflow file name
  9. -- 7-27-87 NCC  Upgraded further for rev 3.0 and 3.10
  10. -- 6-24-87 TT - Upgraded for rev 3.0
  11. ------------------------------------------------------------------------
  12. -- ******** Attention all programmers: you must document any ******** --
  13. -- ******** and all changes you make to this file at the top! ******* --
  14. ------------------------------------------------------------------------
  15.  
  16. -- Graphics Device Driver --
  17.  
  18. -- The file name to echo commands to is given on code line 1.  To activate
  19. -- this feature remove the '--' comment characters in front of the 1 or put 
  20. -- in a '--' to deactivate it.  The file can then be displayed by copying it
  21. -- to the CGB device. Ie. C>COPY /B PW.CGB CGB:
  22.  
  23. --1 PW.CGB
  24.  
  25. -- Color Table Definition
  26.  
  27. --    +---Index 0 is the graphics background color (000 = black)
  28. --    |
  29. --    |                 Entity Color Table
  30. --    |                 ------ ----- -----
  31. --    |                 Color Table Values (RGB) (0-9)(A-F)
  32. --    |                 (0 - 9 & A   0 = Dimmest, A = Brightest)
  33. --    V
  34. --    0   1   2   3   4   5   6   7   8   9  10  11  12  13  14  15
  35. --    +---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+
  36. --    |   |   |   |   |   |   |   |   |   |   |   |   |   |   |   |
  37. --    V   V   V   V   V   V   V   V   V   V   V   V   V   V   V   V
  38. --   RGB RGB RGB RGB RGB RGB RGB RGB RGB RGB RGB RGB RGB RGB RGB RGB 
  39. 2   "100 500 050 005 640 058 505 666 000 800 080 008 870 07A 808 999"
  40.  
  41. --          Starting Shading Color Table Values (RGB)
  42. --          -------- ------- ----- ----- ------ -----
  43. --    0   1   2   3   4   5   6   7   
  44. --    +---+---+---+---+---+---+---+
  45. --    |   |   |   |   |   |   |   |
  46. --    V   V   V   V   V   V   V   V
  47. --   RGB RGB RGB RGB RGB RGB RGB RGB
  48. 3   "000 800 080 008 880 088 808 000"
  49. --3   "000 808 080 088 088 080 800 800"
  50.  
  51. --                Dark Shading Color Increments (RGB)
  52. --                ---- ------- ----- ---------- -----
  53. --    0   1   2   3   4   5   6   7
  54. --    +---+---+---+---+---+---+---+
  55. --    |   |   |   |   |   |   |   |
  56. --    V   V   V   V   V   V   V   V
  57. --   RGB RGB RGB RGB RGB RGB RGB RGB
  58. 4   "111 100 010 001 110 011 101 111"
  59.  
  60. --               Light Shading Color Increments (RGB)
  61. --               ----- ------- ----- ---------- -----
  62. --    0   1   2   3   4   5   6   7
  63. --    +---+---+---+---+---+---+---+
  64. --    |   |   |   |   |   |   |   |
  65. --    V   V   V   V   V   V   V   V
  66. --   RGB RGB RGB RGB RGB RGB RGB RGB
  67. 5   "111 011 101 110 001 100 010 111"
  68.  
  69.  
  70. --  +-- Cursor character number
  71. --  V
  72. 101 95
  73.  
  74. -- 16 bit line font patterns           (Entity ident hilite font)
  75. --                                                  |
  76. --                                                  V
  77. --    1     2    3      4      5      6      7      8
  78. 102 6168  4080  8184  32742  32663  15420    15   26214
  79.  
  80. -- Beep definition line in duration,frequency divisor pairs
  81. -- (divisor = 1193180/desired freq, ie divisor for 400hz = 2983)
  82. --
  83. -- Up to 10 pairs may be given.
  84. -- This line is optional and may be commented out to get the default beep.
  85.  
  86. 103 4 4200 2 3800 1 3400 1 3000 1 2600 1 2200 1 1800 4 1400 2 1000 2 800
  87.  
  88. -- The number on line 109 is for how many 16-k pages of Expanded Memory
  89. -- to allocate for saving a display list in.
  90.  
  91. 109 0  --number of 16k pages to allocate for display list (32 = 512k bytes)
  92.  
  93. 6 display.ovl            --display list overflow file name
  94.  
  95. --    +-----+-- X,Y Screen pixels per inch
  96. --    V     V
  97. 301 94.4 96.8
  98.  
  99. --Custom configuration options
  100. --110 6           --DMA Channel to use with Clipper (6 or 7)
  101. --111 10          --IRQ Vector to use with Clipper (10, 11 or 12)
  102. --112 816         --I/O Ports to use with Clipper (816 or 832)
  103. --113 0           --Flag to Enable Page Swapping (-1=yes)
  104.  
  105. -- For Ultra clipper only:
  106. -- 16 bit line font patterns           (Entity ident hilite font)
  107. --                                                  |
  108. --                                                  V
  109. --    1     2    3      4      5      6      7      8
  110. --114 6168  4080  8184  32742  32663  15420    15   26214
  111.  
  112. END DDIF
  113. END
  114.