Resolved! ARM assembly - Fibonacci Implementation: PUSH and POP not working as expected
have written this ARM assembly code. It is supposed to put the Fibonacci sequence numbers in R4 register. I'm trying to implement this C code in assembly:int fibbonacci(int n) { if(n == 0) return 0; else if(n == 1) return 1; ...