logo Hurry, Grab up to 30% discount on the entire course
Order Now logo

Ask This Question To Be Solved By Our ExpertsGet A+ Grade Solution Guaranteed

expert
Aditya PanchalMathematics
(5/5)

680 Answers

Hire Me
expert
Maria SarapovaEducation
(5/5)

816 Answers

Hire Me
expert
Helmi MengEconomics
(5/5)

547 Answers

Hire Me
expert
Johan CornerOthers
(5/5)

895 Answers

Hire Me
Assembly Programming

Write an assembly program (MASM and Irvine’s libraries) that calculates the nth Fibonacci number.

INSTRUCTIONS TO CANDIDATES
ANSWER ALL QUESTIONS

Write an assembly program (MASM and Irvine’s libraries) that calculates the nth Fibonacci number.
To do this we need to calculate the series of Fibonacci numbers upto n
{F0=0; F1=1; F2=1; F3=F1+F2; F4=F3+F2; F5=F4+F3}

   0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, ...


If we use 0, 1 and initial conditions the sequence of the first 6 numbers would be:
   0, 1, 1, 2, 3, 5
                  ^
                 6th

You will need to ask the user for the last number in the series is to be.. So if the user wants the
6th Fibonacci number your progam shoule print out 5.   If they want the 9th then 21
Ask/prompt the user for the index,or sequence umber   Use ReadDec to get value


Use the ebx, eax, and edx registers. 
This is similar to our last project (see below)
BUT THIS TIME WE NEED TO USE ecx AS THE LOOP COUNTER



Some other specifications:
Format your code correctly (indent) and have the correct comments at top for the file
(see lecture note) Name the file 221xproj03<username>.asm (where x is your section number
and <username> is your campus username (i.e. login, toro-mail, etc). Do not use spaces,
capital letters or any special characters in the naming. submit (upload) just the .asm
file to the blackboard assignment link (type out full-name).


SOME HELP

READING a number from user

   ...
   mov edx, offset prompt  ; copy the address of your byte array (string)
   call WriteString        ; write your string to console
   call ReadDec      ; read unsigned number from user
   mov ecx, eax      ; save it into the loop counter (ECX is the loop counter)
   ...


LOOPS example
   ; print "hi" on the screen 10 times

   mov ecx, 10             ; set loop counter to 10
   TOP:                    ; label for top of the loop
      mov edx, OFFSET msg  ; msg is byte array with "hi",13,10,0
      call WriteString
   loop TOP                ; does a dec ecx AND then if ECS != 0 jumps to TOP
  
   ; print 10,9,8,7,....2,1 to the screen
    comaspace  BYTE ", ",0

   mov ecx, 10             ; set loop counter
   TOP:
      mov eax, ecx            ; copy value in loop counter to eax
      call WriteDec           ; print value in eax (same as ecx)
      mov edx, OFFSET comaspace
      call WriteString
      loop top

 

 

Related Questions

. The fundamental operations of create, read, update, and delete (CRUD) in either Python or Java

CS 340 Milestone One Guidelines and Rubric  Overview: For this assignment, you will implement the fundamental operations of create, read, update,

. Develop a program to emulate a purchase transaction at a retail store. This  program will have two classes, a LineItem class and a Transaction class

Retail Transaction Programming Project  Project Requirements:  Develop a program to emulate a purchase transaction at a retail store. This

. The following program contains five errors. Identify the errors and fix them

7COM1028   Secure Systems Programming   Referral Coursework: Secure

. Accepts the following from a user: Item Name Item Quantity Item Price Allows the user to create a file to store the sales receipt contents

Create a GUI program that:Accepts the following from a user:Item NameItem QuantityItem PriceAllows the user to create a file to store the sales receip

. The final project will encompass developing a web service using a software stack and implementing an industry-standard interface. Regardless of whether you choose to pursue application development goals as a pure developer or as a software engineer

CS 340 Final Project Guidelines and Rubric  Overview The final project will encompass developing a web service using a software stack and impleme