home *** CD-ROM | disk | FTP | other *** search
/ Collection of Hack-Phreak Scene Programs / cleanhpvac.zip / cleanhpvac / TASMSWAN.ZIP / MODULE.ASM < prev    next >
Assembly Source File  |  1989-07-10  |  313b  |  18 lines

  1. ; part of a Simplified External example, Goes with MAIN.ASM
  2. ;--------------------------------------------------------------
  3.  
  4.     IDEAL
  5.     DOSSEG
  6.     MODEL    small
  7.     PUBLIC    Maximum
  8. Maximum =     100h
  9.     DATASEG
  10.     PUBLIC    counter
  11. counter    db    0Fh
  12.     CODESEG
  13.     PUBLIC    subroutine
  14. PROC    subroutine
  15.     ret
  16. ENDP    subroutine
  17.     END
  18.