Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

include Irvine32.

inc
.data
num1 dd 0
num2 dd 1
.code
main proc
mov ecx, 5
Loop_Siya:
mov eax, num1
Invoke WriteInt
call crlf
mov eax, num2
invoke WriteInt
call crlf
mov eax, num1
add eax, num2
mov num1, eax
mov eax, num2
add eax, num1
mov num2,eax
Loop Loop_Siya
exit
main endp
end main

You might also like