Код: Выделить всё
procedure HideCursor1;
begin
asm
mov ah,1
mov ch,$20
int $10
end;
end;
procedure ShowCursor1;
begin
asm
mov ah,1
mov ch,5
mov cl,7
int $10
end;
end;Код: Выделить всё
procedure HideCursor1;
begin
asm
mov ah,1
mov ch,$20
int $10
end;
end;
procedure ShowCursor1;
begin
asm
mov ah,1
mov ch,5
mov cl,7
int $10
end;
end;