Advertisement
Guest User

Untitled

a guest
Feb 16th, 2017
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
ARM 0.43 KB | None | 0 0
  1. @ Calcula el resto y el cociente de 2 números
  2.  
  3.     .code 32
  4.     .global main, __cpsr_mask
  5.  
  6. @ variables del programa
  7. A:      .word  0
  8. B:      .word  5
  9. R:      .word  0
  10. C:      .word  0
  11.  
  12. main:  
  13.     ldr r0, A   @A
  14.     ldr r1, B   @B
  15.     mov r2, r0  @Resto
  16.     mov r3, #0  @Cociente
  17.  
  18. while:  cmp r2, r1
  19.     blt fin
  20.  
  21.     sub r2, r2, r1
  22.     add r3, r3, #1
  23.  
  24.     b while
  25.  
  26. fin:    str r2, R
  27.     str r3, C
  28.  
  29.     mov  pc,lr
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement