错误消息“转发消息需要超控”警告“模块取决于通过-完成可通过性”“

问题描述 投票:0回答:1

错误消息“前向消息需要重写(24)[在文件输入中]”警告“模块取决于通过-完成了可通过性传递[主文件行31]”我的代码是:

file: input
enter_char proc ;; the ouput from console is saved in al; destroys ax.
    mov ah, 01h
    int 21h
    ret
enter_char endp

enter_notFullPos proc
    mov bx, 0
    mov cl, 0
    num_enter:
        call enter_char
        cmp al, "."
        jnz after_point
        mov cl, 1
        after_point: 
            sub al, "0"
            jc end_input
            cmp al, 10
            jnc end_input
            adding_number:
                mult bx, 10
                add bl, al
                cmp cl, 0
                jnz after_add
                inc cl
                after_add:jmp num_enter
    end_input:
        mov angel, bx
        dec cl
        mov pivot, cl
        ret
enter_notFullPos endp

并且在文件中:“ mathop.asm”

mult macro num1, num2 ; returns result in num1
    push dx
    push ax
    push bx
    mov ax, num1
    mov bx, num2
    mul bx
    pop bx
    mov num1, ax
    pop ax
    pop dx
endm

存在3个问题:1.错误2.程序落下。3.程序无法正常运行

没有该行“ call downLine”的程序不会关闭”但我们将重点放在可能与其他问题(错误)有关的主要问题上。该mult宏应该将计算的最终值放在num1中,而不更改任何寄存器。我的主要代码不使用宏。我正在使用tasm,并带有/ m

我的主:(从第13行开始)

assume cs:cseg, ds: dseg
include print.asm
include input.asm
include mathop.asm
    start:
        mov ax, dseg
        mov ds, ax
        print massage1
        call downLine
        call enter_char
        mov trigo_func, al
        print massage2
        call enter_notFullPos
        mov bx, angel
        push bx
        ;call print_num
        int 3h
cseg ends
end start

enter image description here

assembly macros x86-16 tasm
1个回答
0
投票

人们按照文件包含的顺序排列。我需要一个文件在另一个文件中的一些功能,但仍未定义]

© www.soinside.com 2019 - 2024. All rights reserved.