我Integer overflow
进去了HLA nasm
。我想编写一个简单的程序,将提供Distance
的变量除以 15000 并显示它的评估,但我遇到了这个问题。我根本不明白除法的想法HLA
。预先感谢您的帮助。
program zad2;
#include( "stdlib.hhf");
static
f : int32 := 15000;
s : int32 := 300000;
Distance: int32;
begin zad2;
stdout.put("Give car distance", nl);
stdin.get(Distance);
if (Distance<150000) then
MOV(15000, eax);
div(Distance, EDX:EAX );
stdout.put("div evaluation:",eax ,nl);
jmp menu0;
endif
end zad2;