home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / C / OTL-MC6.DMS / in.adf / libsrc.lha / LIBSRC / freestore.asm < prev    next >
Encoding:
Assembly Source File  |  1994-04-08  |  207 b   |  17 lines

  1.  
  2. * Maxon C++ Library:
  3. * Modul "freestore"
  4. * Jens Gelhar 28.01.92, 08.04.94
  5.  
  6.     xref    malloc__Ui,free__Pv
  7.     xdef    op__new__Ui,op__delete__PvUi
  8.  
  9. op__new__Ui:
  10.     jmp malloc__Ui
  11.  
  12. op__delete__PvUi:
  13.     jmp free__Pv
  14.  
  15.     end
  16.  
  17.