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 / Close.i < prev    next >
Encoding:
Text File  |  1990-11-16  |  325 b   |  10 lines

  1.      NOLIST
  2. Close          MACRO           ; 10 Jan 88
  3. *------------------------------; Start of Close macro.
  4.                                ; Put the file handle in D1.
  5.      MOVE.L \1,D1
  6.      CallLib Close,dos         ; Call Close to remove the file.
  7. *------------------------------; End of Close macro.
  8.      ENDM
  9.      LIST
  10.