TITLE mp2data.a INT ARRAY ; displays this message ; 0123456789 123456789 123456789 123456789 123456789e ; ||||||||||||||||||||||||||||||||||||||||||||||||||| ; 0 - +---------------+ ; 1 - +---------------+ | Another test | ; 2 - | MP2 test data | +---------------+ ; 3 - +---------------+ ; 4 - ; each line of code is one record, structured as followed: ; word 0: pointer to text or, for the last item, null ; word 1: X coordinate ; word 2: Y coordinate ; item number, comment ARRAY: W DASHES, 2, 1 ; 0, left box, top frame W BLANKS, 2, 2 ; 1, left box body W DASHES, 2, 3 ; 2, left box, bottom frame W PLUS, 45, 3 ; 3, will be erased later W PLUS, 22, 2 ; 4, will be erased later W BLANK, 45, 3 ; 5, erases item 3 W BLANK, 22, 2 ; 6, erases item 4 W DASHES, 26, 2 ; 7, right box, bottom frame W BLANKS, 26, 1 ; 8, right box, body W DASHES, 26, 0 ; 9, right box, top frame W PLUS, 45, 3 ; 10, will be erased W PLUS, 22, 2 ; 11, will be erased W BLANK, 45, 3 ; 12, erase item 10 W BLANK, 22, 2 ; 13, erase item 11 W MP2, 4, 2 ; 14, left box, leftmost word W PLUS, 45, 3 ; 15, will be erased W PLUS, 22, 2 ; 16, will be erased W BLANK, 45, 3 ; 17, erases item 15 W BLANK, 22, 2 ; 18, erases item 16 W TEST, 8, 2 ; 19, left box, middle word W PLUS, 45, 3 ; 20, will be erased W PLUS, 22, 2 ; 21, will be erased W BLANK, 45, 3 ; 22, erases item 20 W BLANK, 22, 2 ; 23, erases item 21 W DATA, 13, 2 ; 24, left box, right word W PLUS, 45, 3 ; 25, will be erased W PLUS, 22, 2 ; 26, will be erased W BLANK, 45, 3 ; 27, erases item 25 W BLANK, 22, 2 ; 28, erases item 26 W TEST, 37, 1 ; 29, right box, right word W NOTHER, 28, 1 ; 30, right box, left word W 0, 0,0 ; 31, end of list DASHES: ASCII "+---------------+",0 BLANKS: ASCII "| |",0 MP2: ASCII "MP2",0 TEST: ASCII "test",0 DATA: ASCII "data",0 NOTHER: ASCII "Another",0 BLANK: ASCII " ",0 PLUS: ASCII "+",0 END