home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / labhelp.zip / labhelp / readme < prev    next >
Text File  |  1993-01-29  |  934b  |  21 lines

  1. To use this device driver:
  2.  
  3. (1) Add a line device=<path>labhelp.sys to config.sys and reboot.
  4.  
  5. (2) Look at test.c and understand what is happening in main.  You can scan
  6.     the subroutine, but it's operation is pretty much irrelevent.
  7.  
  8. (3) Run test as an example program only in a full screen OS/2 session - never
  9.     in a window.  It will gain access to the video screen memory and overwrite
  10.     everything with 0's.
  11.  
  12. (4) Be careful with where you access memory.  The length descriptor in the
  13.     call has a granularity of 4096 bytes (on page) as far as I can tell.
  14.     I've been able to write beyond my requested block (to that limit) with no
  15.     problem.
  16.  
  17. To use the Microsoft C6.0A compiler, you must #define MSC60 in the file test.c,
  18. and then compile with recommended options /AH /Za /W3 /FPi /G2.  Probably also
  19. have to #define NO_DEVELOPERS_KIT in test.c unless you have the developer's
  20. toolkit installed.
  21.