mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-17 22:49:23 +02:00
* Crt.CursorOff: use CX=bash200, instead of CX= for making the cursor invisible; this is the correct value, according to the BIOS documentation I've found and it is also the value used by the go32v2 video unit
git-svn-id: trunk@25483 -
This commit is contained in:
parent
02e054a09e
commit
e60c3ee740
@ -534,7 +534,7 @@ var
|
|||||||
regs : trealregs;
|
regs : trealregs;
|
||||||
begin
|
begin
|
||||||
regs.realeax:=$0100;
|
regs.realeax:=$0100;
|
||||||
regs.realecx:=$ffff;
|
regs.realecx:=$0200;
|
||||||
realintr($10,regs);
|
realintr($10,regs);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
@ -564,7 +564,7 @@ var
|
|||||||
regs : registers;
|
regs : registers;
|
||||||
begin
|
begin
|
||||||
regs.ax:=$0100;
|
regs.ax:=$0100;
|
||||||
regs.cx:=$ffff;
|
regs.cx:=$0200;
|
||||||
intr($10,regs);
|
intr($10,regs);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
@ -523,7 +523,7 @@ var
|
|||||||
regs : trealregs;
|
regs : trealregs;
|
||||||
begin
|
begin
|
||||||
regs.realeax:=$0100;
|
regs.realeax:=$0100;
|
||||||
regs.realecx:=$ffff;
|
regs.realecx:=$0200;
|
||||||
realintr($10,regs);
|
realintr($10,regs);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user