Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Delay Loop: Write a subroutine in assembly language that will delay for 1 second. First you will need to calculate how many instructions you will

image text in transcribed
Delay Loop: Write a subroutine in assembly language that will delay for 1 second. First you will need to calculate how many instructions you will need to execute to fill 1 second. Remember that the DE1-SoC has an 800 Mhz clock, and a 3-stage pipelined architecture which will essentially take one clock cycle before moving onto the next instruction. After you have this number, you will need to create a For loop, which will contain a counter to simply count down to a specified number. That number will be calculated by taking the number of instructions you need (which you just calculated) divided by the number of instructions in your For loop. You will turn in a single .s file which contains a properly formatted function in GNU assembly, that will loop so as to create a 1 second delay. You must include your calculations as comments in you file

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_step_2

Step: 3

blur-text-image_step3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions