home *** CD-ROM | disk | FTP | other *** search
/ Jason Aller Floppy Collection / 181.img / TASM-101.ZIP / DELAY.ASM < prev    next >
Assembly Source File  |  1988-10-31  |  315b  |  17 lines

  1.      DOSSEG
  2.      .MODEL  SMALL
  3.      .STACK  200h
  4.      .CODE
  5. Delay:
  6.      mov   cx,0
  7. DelayLoop:
  8.      loop  DelayLoop
  9.      ret
  10.  
  11. ProgramStart:
  12.      call  Delay         ;pause for the time required to
  13.                          ; execute 64K loops
  14.      mov   ah,4ch
  15.      int   21h
  16.      END   ProgramStart
  17.