内联汇编算术问题

时间:2012-07-07 17:48:20

标签: c++ visual-studio-2010 assembly io x86

修改 符号扩展修复了我的问题与除法和模数,一个愚蠢的错字修复我或。我的因子确实用0x0 ... 0显示我想要的0但是我仍然对如何在阶乘结果之前输出那个句子感到困惑。我删除了大部分关于阶乘的不必要的代码。基本上,我如何在汇编中打印字符串? Google今天不是我的朋友

#include <stdio.h>
#include <stdlib.h>
#include <string.h>


char message[] = "Factorial input must be a positive integer >=1";

int calc (int op1, int op2, int opcode)
{
__asm
{
    mov eax, 0          ; zero out the result
    mov ebx, opcode     ; move opcode to ebx for comparison

    cmp ebx, 0x01       ; check for ADD
    jne sub_2           ;
    mov eax, op1        ;
    add eax, op2        ;
    jmp done            ;

sub_2:
cmp ebx, 0x02       ;check for subtract
jne mul_3           ;
mov eax, op1        ;
sub eax, op2        ;
jmp done            ; 

mul_3:
cmp ebx, 0x03       ;check for multiply
jne div_4           ;
mov eax, op1        ;
mul op2             ; 
jmp done            ;

div_4:
cmp ebx, 0x04       ;check for divide
jne mod_5
xor edx, edx        ; zero out the register
mov eax, op1
div op2
jmp done

mod_5:
cmp ebx, 0x05       ;check for modulus
jne and_6
xor edx, edx        ; zero out the register
mov eax, op1
div op2
mov eax, edx
jmp done

and_6:
cmp ebx, 0x06       ;check for &
jne or_7
xor edx, edx        ; zero out the register
mov eax, op1
and eax, op2
jmp done

or_7:
cmp ebx, 0x07        ;check for |
jne xor_8
xor edx, edx         ; zero out the register
mov eax, op1
xor eax, op2
jmp done

xor_8:
cmp ebx, 0x08       ;check for xor
jne fac_9
xor edx, edx        ; zero out the register
mov eax, op1
xor eax, op2
jmp done

fac_9:
cmp ebx, 0x09       ;check for !
jne done;
xor edx, edx        ; zero out the register
mov eax, op1
cmp eax, 0
jl error
wp1:
mov ecx, op1
DEC ecx
mov ebx, 1
L1:
mul ebx
INC ebx
LOOP L1
jmp done

error:
    mov eah, 9h            ;no clue how to
    lea eax, message       ;print a message in assembly
    jmp wp1

done:
};
}

我有一些负面输入问题。当我有op1的负阶乘时,当它打印出消息“Factorial input ...&gt; = 1”然后只返回0时它就会崩溃和烧伤。还有负输入我的除法,模数和/或结果是错误的。

这是我应该得到的

Operand 1 = -10    Operand 2 = -5
Add:        -15   xfffffff1
Sub:         -5   xfffffffb
Mul:         50   x00000032
Div:          2   x00000002
Mod:          0   x00000000
And:        -14   xfffffff2
Or:          -1   xffffffff
Xor:         13   x0000000d
Error: Factorial input must be a positive integer >=1
Fac:          0   x00000000

我得到了什么。

Operand 1 = -10    Operand 2 = -5
Add:        -15   xfffffff1
Sub:         -5   xfffffffb
Mul:         50   x00000032
Div:          0   x00000000
Mod:        -10   xfffffff6
And:        -14   xfffffff2
Or:          13   x0000000d
Xor:         13   x0000000d
**crashes**

有任何帮助吗?我在x86中使用Visual Studio c ++

0 个答案:

没有答案