Texts: Write an ARM assembly program that meets the following requirements.
Write the Fibonacci series in ARM assembly.
Implement conditional and loop in assembly code. Write an ARM assembly program to find the next 15 Fibonacci numbers after f1 and f2. However, we only want to display the ones that are even.
DO NOT USE MEMORY LOCATIONS TO STORE THESE VARIABLES.
F1 = 1
F2 = 1
Loop 15 times:
F3 = f1 + f2
If f3 is even, display it.
Use temporary registers to store intermediate results. DO NOT use an array or a recursive approach to solve this problem.
I am using a Raspberry Pi.