home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power-Programmierung
/
CD1.mdf
/
magazine
/
progjour
/
1991
/
06
/
debing.asm
< prev
next >
Wrap
Assembly Source File
|
1991-07-28
|
1KB
|
30 lines
;***********************************************************************
; DEBING.ASM *
; DEBING removes the BINGO TSR when BINGO has been run in an *
; environment that doesn't periodically emit an INT 1AH, AH=0 (such as *
; when running in a DOS window under DESQVIEW 386). If the "Bingo" *
; display doesn't follow the DOS prompt after running BINGO, run *
; DEBING before running any other program. *
; Written by M. L. Lesser, 7/13/91 *
; Assembled with TASM v 2.5 and linked with TLINK v 4.0, switch "/t" *
;***********************************************************************
SHOWIT MACRO SYMBOL ;Use BIOS to display symbol
MOV AX,0E00H+SYMBOL
INT 10H
ENDM
CODE SEGMENT PARA PUBLIC 'CODE'
ASSUME CS:CODE, DS:CODE
ORG 100H
DEBING PROC NEAR
MOV AH,0 ;Fire "BINGO"
INT 1AH
IRPC LETTER,<Bingo is gone>
SHOWIT '&LETTER'
ENDM
INT 20H
DEBING ENDP
CODE ENDS
END DEBING