home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / C / Samples / CSAPE32.ARJ / SOURCE / OWLSCR / PCDATA.MAC < prev    next >
Encoding:
Text File  |  1990-02-03  |  741 b   |  33 lines

  1. ; pcdata.mac
  2. ;
  3. ; 7/7/89 by Ted
  4. ;
  5. ; pcdata structure specification for PC DIG assembly code.
  6. ;
  7. ; OWL-PCA 1.2
  8. ; Copyright (c) 1988, 1989 Oakland Group Inc.
  9. ; ALL RIGHTS RESERVED
  10. ;
  11. ;------------------------REVISION HISTORY--------------------------------------;
  12. ;------------------------------------------------------------------------------;
  13. pcdata struc
  14.     fontoffs    dd 0
  15.     fontseg        dw 0
  16.     vidaddr        dw 0
  17.     nsame        dw 0
  18.     starty        dw 0
  19.     fgcol        db 0    ;; note: fgcol and bgcol together make splitcol.
  20.     bgcol        db 0
  21.  
  22.     dispseg        dw 0
  23.     ilmask        dw 0
  24.     ilsize        dw 0
  25.     vbincr        dw 0
  26.     fontlines    dw 0
  27.     nplanes        db 0
  28. pcdata ends
  29.  
  30. extdata pcdatastruc byte
  31. ;------------------------------------------------------------------------------;
  32.  
  33.