CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: manarzaid

Search: Search took 0.02 seconds.

  1. Replies
    26
    Views
    5,175

    Re: A few questions about exception handling

    Why the screen of the emu is empty ?????
    what can i put in the code to print the value of AX and BX??
  2. Replies
    26
    Views
    5,175

    Re: A few questions about exception handling

    Thank you for your advice about (jmps) , but i didn't know convert power (pow) function into assembly code
    i replace it in my code with square !!
  3. Replies
    26
    Views
    5,175

    Re: A few questions about exception handling

    I didn't understand what are you talk about jmp exit is this wrong ??
  4. Replies
    26
    Views
    5,175

    Re: A few questions about exception handling

    I'm having some problems with convert the c++ code to assembly i need to check it , i didn't know
    what the initial value of the AX and BX the program emu8086 give me error

    MOV AX,
    ...
  5. Replies
    26
    Views
    5,175

    Re: A few questions about exception handling

    Hello AKRichard,
    I saw your profile and i know that you have information about c++ and assembly
    i hope you help me about convert the following C++ code into assembly

    int x, y;
    while(x > y--)...
  6. Convert the following C++ code into assembly please quickly

    int x, y;
    while(x > y--)
    {
    if (x>0 && y<0)
    x = y = pow(x , y);
    else if(--x > y++)
    x = x && y;
    else
    y = ( x & y)>> 3;
Results 1 to 6 of 8





Click Here to Expand Forum to Full Width

Featured