home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Master Technician
/
MASTER_TECHNICIAN.ISO
/
mtech
/
library
/
offline
/
misc
/
skey30.exe
/
FLUSH.ASM
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Assembly Source File
|
1990-03-25
|
403 b
|
21 lines
title FLUSH.ASM
;Copyright (C) 1990 by B. Simon and R. M. Wilson, all rights reserved.
cseg segment
assume cs:cseg
begin: mov al,0AEH
out 64H,al
xor cx,cx
here: loop here
mov ah,1
int 16h
jz nomore
xor ah,ah
int 16h
jmp short begin
nomore: ret
cseg ends
end begin