/* -------------------------------------------------- Define required labels for EGTAPI -------------------------------------------------- */ .global main, Stop, CodeEnd .global DataStart, DataEnd .equiv MAX,44 /* -------------------------------------------------- Begin of the program instructions -------------------------------------------------- */ .text main: mov r0, #44 mov r1, #MAX // Same as: mov r1,#44 Stop: CodeEnd: nop /* -------------------------------------------------- Begin of the permanent program variables -------------------------------------------------- */ .data DataStart: DataEnd: .end