GenTwoTeg 0 Newbie Poster

i'm having the same problem. i'm trying to write a program in emu8086 that generates the first 15 intergers of the Fibonacci numbers. it begins with the first two numbers, 1 and 2, and then each number after that is the sum of the last two digits....this i understand but what i don't understand is how to add the two last digits together...oh yeah i have to store the numbers in an array...i've created an array called "array1 dw 15 dup(0)......


here is my code so far....

; multi-segment executable file template.

data segment
    ; add your data here!
    array1 dw 15 dup(0)
    
ends

stack segment
    dw   128  dup(0)
ends

code segment
start:
; set segment registers:
    mov ax, data
    mov ds, ax
    mov es, ax

    ; add your code here
    
     lea bx, array1
     
     mov ax, 1
     mov [bx], ax
     mov ax, 2
     add bx, 2
     mov [bx], ax
     add bx, 2 
    
     mov cx, 13
     
     L1: 
     
     dec bx
     mov [si], bx
     inc bx
     mov [di], bx
     add si, di
     mov bx, 3

     
     loop L1
    ; ???? this is where i'm stuck, i need to write a loop that adds the last two digits???  
    ; can you guys help/guide me through???

end start ; set entry point and stop the assembler.