test_forward.S 193 B

12345678910111213141516171819
  1. .text
  2. .align 2
  3. .globl _start
  4. _start:
  5. addi x1, x0, 7
  6. addi x2, x0, 5
  7. and x1, x2, x1
  8. loop:
  9. sw x5, 16(x0)
  10. jal x0, loop
  11. nop
  12. nop
  13. nop
  14. .end _start
  15. .size _start, .-_start