home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / alib / d1xx / d183 / pcq.lha / PCQ / Runtime / outbuffer.asm < prev    next >
Assembly Source File  |  1989-02-26  |  304b  |  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.