home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / vol_200 / 223_02 / topofmem.mac < prev    next >
Text File  |  1989-02-23  |  384b  |  16 lines

  1. ;
  2. ;
  3. ; End of memory    function
  4. ; Returns top memory location in HL
  5.  
  6. CBDOS    EQU    5
  7.  
  8. TOPOFMEM::
  9.     LDA    CBDOS+2    ; Get base of BDOS (mod to cbdos (fas))
  10.     MOV    H,A    ; Save page in HL
  11.     MVI    L,0
  12.     RET
  13.  
  14.     END
  15.  
  16.