home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Collection of Hack-Phreak Scene Programs
/
cleanhpvac.zip
/
cleanhpvac
/
W95SPCOD.ZIP
/
AFTERW95
/
FLY
/
50_COURB.ASM
next >
Wrap
Assembly Source File
|
1995-12-21
|
1KB
|
70 lines
;; ┌──────────────────┐
;; ███▀▀█ ███ ██ ███
;; ███▄ ███ ██▄███
;; ███ ███ ▄ ▄ ███
;; ▀▀▀ ▀▀▀▀▀▀ ▀▀▀▀▀▀
;; )C(CoPYWRoNG TflTdv
;; chipcode compo at
;; Wired 1995
;; └──────────────────┘
.486
.MODEL Tiny
;; ∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙
CODE SEGMENT WORD PUBLIC USE16 'CODE'
Start:
;;get keypad number
int 16h
aaa
cbw
mov cl,13h
xchg ax , cx
;;switch to 320x200x256
int 10h
mov ah , 0a0h
mov es , ax
;;display i squares
jcxz waitakey
mov ax , 6464h
mov si , 317
@@:
add di,cx
stosw
stosb
add di,si
stosb
inc di
stosb
add di,si
stosw
stosb
loop @B
waitakey:
xchg ax , cx
int 16h
;;texmode and ega lines
mov ax , 3 ;;back to text mode
int 10h
mov ax , 1112h ;;ega lines
int 10h
ret ;;back to dos
CODE ENDS
END Start