home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / magazine / progjour / 1991 / 06 / debing.asm < prev    next >
Assembly Source File  |  1991-07-28  |  1KB  |  30 lines

  1. ;***********************************************************************
  2. ;                              DEBING.ASM                              *
  3. ;    DEBING removes the BINGO TSR when BINGO has been run in an        *
  4. ; environment that doesn't periodically emit an INT 1AH, AH=0 (such as *
  5. ; when running in a DOS window under DESQVIEW 386).  If the "Bingo"    *
  6. ; display doesn't follow the DOS prompt after running BINGO, run       *
  7. ; DEBING before running any other program.                             *
  8. ;                   Written by M. L. Lesser, 7/13/91                   *
  9. ;  Assembled with TASM v 2.5 and linked with TLINK v 4.0, switch "/t"  *
  10. ;***********************************************************************
  11.  
  12. SHOWIT  MACRO   SYMBOL                  ;Use BIOS to display symbol
  13.         MOV     AX,0E00H+SYMBOL
  14.         INT     10H
  15. ENDM
  16.  
  17. CODE SEGMENT PARA PUBLIC 'CODE'
  18.         ASSUME CS:CODE, DS:CODE
  19.         ORG     100H
  20. DEBING  PROC NEAR
  21.         MOV     AH,0            ;Fire "BINGO"
  22.         INT     1AH
  23. IRPC    LETTER,<Bingo is gone>
  24.         SHOWIT  '&LETTER'
  25. ENDM
  26.         INT     20H
  27. DEBING  ENDP
  28. CODE    ENDS
  29.         END     DEBING
  30.