Question: Write a program in ARM assembly using ARMSim# to perform the following tasks: 1. Open a file named integers.dat and keep track of the following
Write a program in ARM assembly using ARMSim# to perform the following tasks: 1. Open a file named "integers.dat" and keep track of the following information: a. The first integer value is (i) b. The ith integer value is (j) c. Count the total number of integers in the file d. Count the number of integers that are less than j e. Count how many even numbers are less than j f. And how many odd numbers are less than j i.e. Output the six pieces of information to the console (stdout), For example, if "integers.dat" contains the integers "4 -447 10 198 0 569 -34 986 547 4" I would expect the following result as an output: a. Integer (i) = 4 b. Integer (j) = 198 c. Total integers = 10 d. Integers < (j) = 6 e. Even < (j) = 5 f. Odd < (j) = 1
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
