home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power-Programmierung
/
CD1.mdf
/
pascal
/
library
/
dos
/
tsr
/
popup
/
cursor.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
|
1988-10-25
|
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