TITLE "mp1 -- Douglas Jones" USE "hawk.h" INT HEAD NULL = 0 ; the null pointer, points to nothing NUL = 0 ; the ASCII character, end of string ; first list element HEAD: W NAME2 ; next field W 1 ; X coordinate W 1 ; Y coordinate W GIVNAM ; string pointer NAME2: W TITLE ; next field W 1 ; X coordinate W 2 ; Y coordinate W FAMNAM ; string pointer TITLE: W NULL ; next field W 4 ; X coordinate W 4 ; Y coordinate W COURSE ; string pointer ; the strings GIVNAM: ASCII "Douglas",NUL FAMNAM: ASCII "Jones",NUL COURSE: ASCII "Machine Problem 1",NUL END