home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Collection of Hack-Phreak Scene Programs
/
cleanhpvac.zip
/
cleanhpvac
/
W95SPCOD.ZIP
/
WINNERS
/
SURP-KLF
/
SURP_KLF.BAS
< prev
next >
Wrap
BASIC Source File
|
1995-11-05
|
620b
|
45 lines
; tiny codi : r0k [Keen like Frogs]
; chicken [Surprise!Prod.]
; Hotblack [Keen like Frogs]
; Stone [Dust]
; we had fun doing it, try to beat it ;)
.MODEL tiny
.186
_code SEGMENT 'code'
start:
pop bx
pop di
pop es
int 16h ; getch
and ax,0Fh
mov cl,al
mov al,13h ; set 320x200
int 10h
jcxz SHORT exit
mov ax,6464h
mov dx,317
@@:
stosw
stosb
add di,dx
stosb
inc di
stosb
add di,dx
stosw
stosb
inc di
loop @B
exit:
xchg ax,cx
int 16h
mov ax,3 ; back to textmode
int 10h
mov ax,1112h
int 10h
int 20h
_code ENDS
END start