.text .globl _start start = 0 /* starting value for the loop index */ max = 31 /* loop exits when the index hits this number (loop condition is i 0 */ mov x8, 93 /* exit is syscall #93 */ svc 0 /* invoke syscall */ .data msg: .ascii "Loop: \n" len = . - msg