/* --------------------------------------------------
   Define required labels for EGTAPI
   -------------------------------------------------- */
        .global main, Stop, CodeEnd
        .global DataStart, DataEnd

	.global x

/* --------------------------------------------------
   Begin of the program instructions
   -------------------------------------------------- */
	.text
main:
        mov     r0, #44

Stop:
CodeEnd:
    	nop

/* --------------------------------------------------
   Begin of the permanent program variables
   -------------------------------------------------- */
	.data
DataStart:
x:	.word 4444


DataEnd:

	.end