home *** CD-ROM | disk | FTP | other *** search
- PAGE 60,132
-
- TITLE row43.com version 1.01 1989-04-10
-
- ;
- ; AnDan Software Row43 Version 1.01
- ; Copyright (c) AnDan Software 1989
- ;
- ; Shareware:
- ;
- ; This source code may be copied if no fee is charged and
- ; if no changes are done.
- ;
- ; AnDan Software
- ;
- ;
- ;
-
- com SEGMENT para
-
- ASSUME cs:com,ds:com,ss:com,es:com
-
- ORG 100H
-
- start_main: mov ax,3
- int 10H
- mov ax,1112H
- xor bx,bx
- int 10H
- xor ax,ax
- mov ds,ax
- mov cx,ds:[460H] ;Cursor type, usually 0607H
- inc ch
- mov dx,3D4H
- mov al,10
- out dx,al
- jmp $+2
- inc dx
- mov al,ch
- out dx,al
- jmp $+2
- dec dx
- mov al,11
- out dx,al
- jmp $+2
- inc dx
- mov al,cl
- out dx,al
- jmp $+2
- mov ax,4C00H
- int 21H
-
- com ENDS
-
- END start_main
-