home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Gold Fish 1
/
GoldFishApril1994_CD1.img
/
d1xx
/
d183
/
pcq
/
runtime
/
outbuffer.asm
< prev
next >
Wrap
Assembly Source File
|
1989-02-25
|
304b
|
11 lines
SECTION ONE,BSS
* This allocates space for the output buffer, which is used
* by several of the write routines. Rather than put it in one of
* those modules I decided to give it it's own module. That way it
* isn't linked to the program if it's not required.
XDEF outbuffer
outbuffer ds.b 128
END