home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c082_122 / 6.ddi / TASMEXMP.ZIP / DBLCOLON.ASM < prev    next >
Encoding:
Assembly Source File  |  1992-06-10  |  431 b   |  26 lines

  1. ; Turbo Assembler    Copyright (c) 1988, 1991 By Borland International, Inc.
  2.  
  3. ; DBLCOLON.ASM - Showing how to use the :: colon directive.
  4.  
  5. ; From the Turbo Assembler Users Guide
  6.  
  7. VERSION M510
  8. .MODEL SMALL,C
  9. .CODE
  10.  
  11. A PROC
  12.           NOP
  13. ASINGLE:NOP
  14. ADOUBLE::NOP
  15.           NOP
  16.           RET
  17. A ENDP
  18.  
  19. B PROC
  20.           NOP
  21.           JMP ASINGLE    ;Will fail now
  22.           JMP ADOUBLE
  23.           RET
  24. B ENDP
  25.   END
  26.