home *** CD-ROM | disk | FTP | other *** search
/ Crawly Crypt Collection 1 / crawlyvol1.bin / falcon / program / x_debug / drivers / driver.h < prev    next >
C/C++ Source or Header  |  1991-11-09  |  366b  |  14 lines

  1.  
  2. struct driver {
  3.     long address;
  4.     short planes;
  5.     short bytesperline;
  6.     short width;            /* in pixels */
  7.     short height;            /* in pixels */
  8.     short font;                /* MUST BE -1 for now */
  9.     short (*init)(void);    /* function pointer */
  10.     char gem,tos;            /* 0 means not in use, 1 means in use */
  11.     long start;                /* start of r/w RAM */
  12.     long end;                /* last adress+1 */
  13. };
  14.