KnowledgeBase Archive

An Archive of Early Microsoft KnowledgeBase Articles

View on GitHub

Q42982: Altering BP Register in In-Line Assembly Block

Article: Q42982
Product(s): See article
Version(s): 2.00
Operating System(s): MS-DOS
Keyword(s): ENDUSER | inline | mspl13_c
Last Modified: 2-MAY-1989

In Microsoft QuickC Version 2.00, altering BP register in an in-line
assembly block is not recommended. BP is used to reference the
variables on the stack. If, for some reason, the BP register has to be
modified, it should be pushed on the stack first. Before the BP
register is popped back, referencing stack variables should avoided.
The following is an example:

/* sample program */
#include <stdio.h>

int nGlobal = 10 ;
void main (void)
{
int nStackVar = 1 ;

/* open the register window to observe the registers.
** open the debug window to observe the variables */
_asm {
        mov ax, nStackVar   ; nStackVar is referenced correctly
        push bp
        mov bp, sp          ; change bp
        mov ax, nStackVar   ; nStackVar is not right
        mov bx, nGlobal     ; nGlobal is OK
        pop bp
        mov ax, nStackVar   ; nStackVar is OK again
        }
}

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.