Kursor

Ukrycie kursora

Procedure CursorOff; Asembler; {ukrywa kursor}
Asm
   mov ah, 01h
   mov ch, 10h
   mov cl, 00h
   int 10h
End;

Wyświetlenie kursora

Procedure CursorOn; Asembler; {pokazuje kursor}
Asm
   mov ah, 01h
   mov ch, 06h
   mov cl, 07h
   int 10h
End;

Zmiana koloru podkreślenia

procedure _setcursortype (cr_type: word); assembler;
asm
  mov cx, cr_type;
  mov ah, 1;
  int 10h;
end;
O ile nie zaznaczono inaczej, treść tej strony objęta jest licencją Creative Commons Attribution-ShareAlike 3.0 License