INCLUDE	Irvine32.inc

.data
randVal	DWORD ?

.code
main		PROC
	call	Randomize
	mov	ecx,50
 L1:
	mov	eax,21		;//0~20의 정수 범위에서 난수 생성
	call	RandomRange
	mov	randVal,eax
	
	mov	eax,21
	call	RandomRange
	sub	eax,randVal	;//0~20의 정수 범위에서 생성한 난수에서 
					;//0~20 정수범위의 난수를 빼면 -20~20범위의 난수가 생성된다.
	
	call	DumpRegs
	call	WaitMsg
	loop	L1
	ret
main		ENDP
END		main
Posted by 공돌이pooh
,