; GDATA.ASM - common graph data for ASMDEMO include asm.inc public teenager, subtitle, xaxis, cost public x0, y0, x1, y1 .data teenager db 'Cost to Feed a Teenager (projected)',0 subtitle db 'before lunch',0 xaxis db 'time of day',0 cost db 'Dollars per Hour',0 x0 dw 0 ; xmin y0 dw 0 ; ymin x1 dw 0 ; xmax y1 dw 0 ; ymax end