0

我正在尝试创建一个小型 nasm 程序,它以浮点数执行此操作

while(input <= 10^5) do
begin
   input = input * 10
   i = i - 1
end

nasm 中的等价程序如下

section .data

    input: resd 1
    n10: dd 0x41200000          ; 10

_start:
    mov eax, 0x43480000        ; eax = 200

    mov dword [input], eax      ; input = eax = 200
    mov edx, 0x49742400         ; 10^5

    ; %begin
    mov ecx, 0                  ; i = 0
    jmp alpha

alpha:
    cmp [input], edx            ; input <= 10^5
    jle _while                  
    jmp log2

_while:
    fld dword [input]            ; input
    fmul dword [n10]                ; input * 10
    fst dword [input]            ; input = input
    dec ecx                      ; i = i - 1
    jmp alpha

循环_while无限迭代

ecx / igards 总是相同的value = 0(它被设置为 0)并且不会递减

4

1 回答 1

0

这对我有用(在 DosBox 中测试):

org 0x100
bits 16

_start:
mov dword [input], __float32__(99.0)
mov edx, __float32__(10000.0)  

mov ecx, 0                  ; i = 0
jmp alpha

alpha:
cmp [input],edx            ; input <= 10^5
jle _while                  
jmp log2

_while:
fld dword [input]            ; input
fmul dword [n10]                ; input * 10
fstp dword [input]            ; input = input
inc ecx                      ; i = i - 1
jmp alpha

log2:

; print the value of cl
mov dl,cl
add dl,'0'
mov ah,2
int 21h

; Exit to DOS
mov ah,0x4c
int 21h

n10: dd 10.0 
input: resd 1

注意bits 16which 告诉 nasm 16 位操作数是默认值,并且使用 32 位操作数的指令应该加上前缀。如果没有这个,如果您尝试在实模式环境中执行它,您的代码将被视为乱码。根据您的目标环境
,您可能需要使用它。 另请注意使用浮点文字而不是十六进制值(您的代码中有错字,您将其与 10^6 而不是 10^5 进行比较)。bits 32

于 2013-06-26T07:23:49.213 回答