hi guys i've got a simple problem with fibonacci sequence.. I use tasm and my processor is amd
and this, so far, is my code:
.model small
.stack
.code
org 100h
start:
mov ah, 02h
mov cx, 07h
mov bl, 31h
mov dl, 30h
A: add bl, dl
int 21h
inc dl
loop A
int 27h
end
it would just display the ascending order of 0-7 but not the fibonacci..
any help pls.