home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 254a.lha / PCQ / Runtime / outbuffer.asm < prev    next >
Encoding:
Assembly Source File  |  1989-05-10  |  304 b   |  11 lines

  1.     SECTION    ONE,BSS
  2.  
  3. *    This allocates space for the output buffer, which is used
  4. *    by several of the write routines.  Rather than put it in one of
  5. *    those modules I decided to give it it's own module.  That way it
  6. *    isn't linked to the program if it's not required.
  7.  
  8.     XDEF    outbuffer
  9. outbuffer    ds.b    128
  10.     END
  11.