/* TP0 */ .text /* Start of the program code section */ .global main /* declares the main identifier */ main: /* Address of the main function */ movs r1, #15 /* Load immediate value 15 */ bx lr /* Return to the caller */ .end /* End of the program */