home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / PROGRAMS / UTILS / MOUSE / GPIBLPT.ZIP / LPEND.ASM < prev    next >
Encoding:
Assembly Source File  |  1990-10-18  |  252 b   |  21 lines

  1.     page    ,132
  2.     title    LPEND - End of LPPLOT
  3.  
  4.     .model    small,c
  5.  
  6. ;*    This routine must be the last in the link list.
  7.  
  8.     .data
  9.  
  10.     public    Stack_Buf
  11.  
  12.     even
  13.     dw    200 dup (?)
  14. Stack_Buf    label    word
  15.  
  16.     public    Last_Memory
  17.  
  18. Last_Memory    label    word
  19.  
  20.     end
  21.