home *** CD-ROM | disk | FTP | other *** search
/ The CDPD Public Domain Collection for CDTV 3 / CDPDIII.bin / pd / programming / assembler / thesource / volume2 / source / system / asmmacros.lha / FreeMem.i < prev    next >
Encoding:
Text File  |  1990-11-16  |  413 b   |  12 lines

  1.      NOLIST
  2. FreeMem     MACRO              ; 11 Jan 88
  3. *------------------------------; Start of FreeMem macro.
  4.                                ; Make A1 point to the memory block start.
  5.      MOVEA.L \1.Adr,A1
  6.                                ; Put the block size in D0.
  7.      MOVE.L \1.Size,D0
  8.      CallLib FreeMem,exec      ; Call FreeMem.
  9. *------------------------------; End of FreeMem macro.
  10.      ENDM
  11.      LIST
  12.