Click here to Login

FIBONACCI SERIES (masm)


; PROGRAM: FIBONACCI SERIES

read macro num
        mov ah, 01h
        int 21h
        mov bh, al
        int 21h
        mov bl, al
        sub bh, 30h
        mov al, 0ah
        mul bh
        sub bl, 30h
        add al, bl
        mov num, al
endm
print macro s
        mov ah, 09h
        mov dx, offset s
        int 21h
endm
data segment
        msg db 'Enter Limit: $'
        fibis db 'Series is: $'
        comma db ', $'
        nl db 0dh,0ah,'$'
        count db 00h
        numa db 2 dup('$')
        numb db 2 dup('$')
        pnum db 11 dup('$')
data ends
code segment
        assume cs:code, ds:data
        start:
        mov ax, data
        mov ds, ax
        print msg
        read count
        print nl
        print fibis
        mov cl, count
        mov ch, 00h
        mov bl, 00h     ;operand a
        mov dl, 01h     ;operand b    
        REPADD:
          mov al, bl            ;print a
          mov ah, 00h
          mov si, offset pnum
          mov numa, bl  ;mov a,b,count to m/y
          mov numb, dl
          mov count, cl
          call hex2ascii  ;converts hex in ax                              
          print pnum      ;to ascii saves in si loc
          print comma
          mov bl, numa  ;get a,b,count from m/y
          mov dl, numb
          mov cl, count
          mov ch, 00h
          xchg bl, dl
          add bl, dl
          loop REPADD
        mov ah, 4ch
        int 21h

hex2ascii proc near
        mov cx, 0000h
        REPDIV:
                mov dx, 0000h
                mov bx, 000ah
                div bx
                add dl, 30h
                push dx
                inc cx
                cmp ax, 000ah
                JGE REPDIV
        cmp al, 00h
        je SKIP0
        add al, 30h
        mov [si], al
        inc si
        SKIP0:
        SAVEASCI:
                pop dx
                mov [si], dl
                inc si
                loop SAVEASCI              
        STOP1:
        mov [si], '$'
        ret
hex2ascii endp

code ends
end start


**************************

OUTPUT

Z:\S5IT\masm>fibanocci
Enter Limit: 07
Series is: 0, 1, 1, 2, 3, 5, 8,

**************************

0 comments:

Post a Comment