home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Frostbyte's 1980s DOS Shareware Collection
/
floppyshareware.zip
/
floppyshareware
/
APOG
/
ASMLIB35.ZIP
/
ASM3DEMO.ZIP
/
GDATA.ASM
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Assembly Source File
|
1992-06-04
|
359 b
|
19 lines
; 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