Advertisement
Guest User

Untitled

a guest
May 6th, 2019
199
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. .method Fib(n1, n2, times)
  2. .var
  3. temp
  4. counter
  5. .end-var
  6.     BIPUSH 0
  7.     ISTORE temp
  8.     BIPUSH 0
  9.     ISTORE counter
  10.  
  11. while:
  12.     ILOAD n1
  13.     ILOAD n2
  14.     IADD
  15.     ISTORE temp
  16.     ILOAD n1
  17.     ILOAD n2
  18.     SWAP
  19.     POP
  20.     ISTORE n1
  21.     ILOAD temp
  22.     ISTORE n2
  23.     IINC counter 1
  24.     ILOAD times
  25.     IFICMPEQ end
  26.     GOTO while
  27.  
  28. end: ILOAD temp
  29.     IRETURN
  30.  
  31. .end-method
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement