home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Programmer 7500
/
MAX_PROGRAMMERS.iso
/
PASCAL
/
TPPOP18C.ZIP
/
CURSOR.ASM
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Assembly Source File
|
1988-10-26
|
406 b
|
28 lines
.MODEL TPASCAL
LOCALS @@
.CODE
PUBLIC cursor
Cursor PROC FAR state:WORD
xor ax,ax
mov es,ax
mov cx,word ptr es:[0460h]
mov ax,state
or al,al
jz @@1
and ch,0Fh
jmp @@2
@@1:
or ch,20h
@@2:
mov ah,1
int 10h
ret
Cursor ENDP
END