% eal test3.a % more test3.l EAL V3.0 by Douglas W. Jones; Tue Jul 13 09:40:45 2004 1 |; check initial value of location counter 2 0000: 01 | B 1 3 0001: 02 | B 2 ; check sequential data 4 0002: 0304 | W #0304 ; check words 5 |. = #0506 ; force change of origin 6 0506: 07 | B #7 ; prior to a byte 7 |. = #0809 ; change origin again 8 0809: 0A0B | W #0A0B ; prior to a word 9 080B: 0C0D | W #0C0D ; consecutive words 10 080D: 0E | B #E ; word to byte 11 080E: 0F | B #F ; consecutive bytes % objtest < test3.o . = #0000 B #01 B #02 W #0304 . = #0506 B #07 . = #0809 W #0A0B W #0C0D B #0E B #0F ; normal EOF %