我试图在汇编中生成一个介于 -27 和 +33 之间的随机数。
有一个称为Randomize
生成 0 和 n 之间的随机数的过程,其中 n 是上限。
如何将下限变为 -27 而不是 0?
这是代码:
title test
INCLUDE irvine32.inc
.data
msg byte "Genrating 50 number",0
.code
main PROC
mov edx,offset byte
call WriteString
call crlf
mov ecx,50
L1:
mov eax,+33
call RandomRange
call writeDec
exit
main ENDP
END main