        .section .text
        .global _start

_start:
        MOV R1, #0x0000000A  ; Load immediate value 0x0000000A into R1
        MVN R0, R1          ; Bitwise negate R1 and store the result in R0

        /* Exit Program */
        MOV R7, #1           ; Load the exit syscall number into R7
        SWI 0                ; Make the syscall to exit

        