ARM GAS  global.s 			page 1


   1              	/* --------------------------------------------------
   2              	   Define required labels for EGTAPI
   3              	   -------------------------------------------------- */
   4              	        .global main, Stop, CodeEnd
   5              	        .global DataStart, DataEnd
   6              	
   7              	//	.global x
   8              	
   9              	/* --------------------------------------------------
  10              	   Begin of the program instructions
  11              	   -------------------------------------------------- */
  12              		.text
  13              	main:
  14 0000 2C00A0E3 	        mov     r0, #44
  15              	
  16              	Stop:
  17              	CodeEnd:
  18 0004 0000A0E1 	    	nop
  19              	
  20              	/* --------------------------------------------------
  21              	   Begin of the permanent program variables
  22              	   -------------------------------------------------- */
  23              		.data
  24              	DataStart:
  25 0000 B3150000 	y:	.word 5555
  26 0004 5C110000 	x:	.word 4444
  27              	
  28              	
  29              	DataEnd:
  30              	
  31              		.end
ARM GAS  global.s 			page 2


DEFINED SYMBOLS
            global.s:13     .text:0000000000000000 main
            global.s:16     .text:0000000000000004 Stop
            global.s:17     .text:0000000000000004 CodeEnd
            global.s:24     .data:0000000000000000 DataStart
            global.s:29     .data:0000000000000008 DataEnd
            global.s:14     .text:0000000000000000 $a
            global.s:25     .data:0000000000000000 y
            global.s:26     .data:0000000000000004 x

NO UNDEFINED SYMBOLS
