TITLE "data structure demo" USE "hawk.macs" NUL = 0 ; Array of months and their lengths MONTHS: ; entry for January W 31 W MONTH1NAME ; entry for February W 28 W MONTH2NAME ; entry for March W 31 W MONTH3NAME ; the remainder of the months follow the above pattern ; String pool of strings making up month names MONTH1NAME: ASCII "January",NUL MONTH2NAME: ASCII "February",NUL MONTH3NAME: ASCII "March",NUL ; the remainder of the month names follow the above pattern ALIGN 4 ; needed if more word data follows END