home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / UTILITY / MISC / POKE_10.ZIP / POKE_10.HLP next >
Encoding:
Text File  |  1991-12-27  |  855 b   |  23 lines

  1. Called as a driver, this program always fails to install, i e it consumes no
  2. memory. Alternatively, it may be called upon as a normal program.
  3.  
  4. Usage: A>POKE outaddr val [val ...] [outaddr val ...] [; comment]
  5. or:    DEVICE=POKE.COM outaddr ...
  6. outaddr may be either seg:addr (memory address) or Oaddr (I/O address).
  7. All values are in hex, and val is considered a byte if its written as
  8. 2 or less digits, or word if its written as 3 or more digits.
  9. val may also be seg@ofs [Ln] to copy data
  10.  
  11. Example use:
  12.  
  13.         DEVICE=POKE.COM 40:17 0 ; Switch off Num Lock bit (among others)
  14.         C:>POKE 50:0 1          ; Disable PrintScreen function
  15.         C:>POKE 40:4 3E8        ; Install COM3 BIOS address
  16.         C:>POKE 40:78 2         ; Change LPT1 timeout
  17.  
  18. Released to the Public Domain by Dan Norstedt 1991
  19.  
  20. Version 1.0
  21.  
  22. Good Luck.
  23.