KnowledgeBase Archive

An Archive of Early Microsoft KnowledgeBase Articles

View on GitHub

Q23868: How to Do "Peeks" and "Pokes" in a C Program

Article: Q23868
Product(s): See article
Version(s): 3.00 4.00 5.00 5.10 6.00 6.00a
Operating System(s): MS-DOS
Keyword(s): ENDUSER | s_quickc | mspl13_c
Last Modified: 6-FEB-1991

The sample code below contains two functions that simulate what are
commonly known as "peek" and "poke" functions. The peek() function
allows you to look at the contents of any memory location while the
poke() function allows you to place a value into any memory location.

Sample Code
-----------

/* The following function will stuff a value into any location in
   addressable memory. seg:ofs = val.
*/

void poke(unsigned int seg, unsigned int ofs, char val)
{
    unsigned char far *ptr;

    ptr = (unsigned char far *) (((long)seg<<16)|(long)ofs);
    *ptr = val;
}

/* The following function will return the contents of any location in
   addressable memory. return(seg:ofs).
*/

unsigned char peek(unsigned int seg, unsigned int ofs)
{
    unsigned char far *ptr;

    ptr = (unsigned char far *) (((long)seg<<16)|(long)ofs);
    return(*ptr);
}

THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Copyright Microsoft Corporation 1986-2002.