home *** CD-ROM | disk | FTP | other *** search
/ Media Share 9 / MEDIASHARE_09.ISO / progmisc / asmlib.zip / GDATA.ASM < prev    next >
Assembly Source File  |  1992-06-04  |  359b  |  19 lines

  1. ; GDATA.ASM - common graph data for ASMDEMO
  2.  
  3. include    asm.inc
  4.  
  5. public    teenager, subtitle, xaxis, cost
  6. public    x0, y0, x1, y1
  7.  
  8. .data
  9. teenager    db 'Cost to Feed a Teenager (projected)',0
  10. subtitle    db 'before lunch',0
  11. xaxis        db 'time of day',0
  12. cost        db 'Dollars per Hour',0
  13. x0        dw 0        ; xmin
  14. y0        dw 0        ; ymin
  15. x1        dw 0        ; xmax
  16. y1        dw 0        ; ymax
  17.  
  18. end
  19.