home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / CTECHAPP.ZIP / WINDOWS.ZIP / PEEKPOKE.H < prev    next >
Text File  |  1990-02-26  |  438b  |  19 lines

  1. /*
  2.     Header:     PeekPoke
  3.     Version:    1.01
  4.  
  5.     Language:   Intel 80x86 Macro Assembler
  6.     Environ:    IBM-PC compatible
  7.  
  8.     Purpose:    Provides functions to peek and poke values into specific
  9.                 memory locations.
  10.  
  11.     Written by: Scott Robert Ladd
  12. */
  13.  
  14. /* prototypes */
  15.  
  16. void Poke(unsigned int segm, unsigned int offs, unsigned int value);
  17.  
  18. unsigned int Peek(unsigned int segm, unsigned int offs);
  19.