In Visual Studio 2022, write an assembly program that uses a loop to calculate the first seven values of the Fibonacci number sequence, described by the following formula:
Fib(1) = 1, Fib(2) = 1, Fib(3) = 2, Fib(n) = Fib(n-1) + Fib(n-2).
Submit the .asm file as well as the screenshot of your output registers and memory using breakpoints (use Snipping Tool to take a screenshot).