/* -------------------------------------------------- Define required labels for EGTAPI -------------------------------------------------- */ .global main, Stop, CodeEnd .global DataStart, DataEnd .global A, a, B, b, C, c /* -------------------------------------------------- Begin of the program instructions -------------------------------------------------- */ .text main: nop // Empty program Stop: CodeEnd: nop /* -------------------------------------------------- Begin of the permanent program variables -------------------------------------------------- */ .data DataStart: A: .byte 11, 12, 13, 14, 15 // byte typed initialzied array A a: .skip 10*1 // byte typed UNinitialized array a (10 elements) .align 1 B: .2byte 111, 112, 113, 114, 115 // short typed initialzied array B b: .skip 10*2 // short typed UNinitialized array b (10 elements) .align 2 C: .4byte 1111, 1112, 1113, 1114, 1115 // int typed initialzied array C c: .skip 10*4 // int typed UNinitialized array c (10 elements) DataEnd: .end