mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-12 07:26:24 +02:00
* huge model safe initialization of ES in PutPixelX
git-svn-id: trunk@41041 -
This commit is contained in:
parent
6cc00c887f
commit
a190d65f92
@ -2631,7 +2631,13 @@ const CrtAddress: word = 0;
|
|||||||
jg @@Done
|
jg @@Done
|
||||||
|
|
||||||
@@ClipDone:
|
@@ClipDone:
|
||||||
|
{$ifdef FPC_MM_HUGE}
|
||||||
|
mov bx, SEG SegA000
|
||||||
|
mov es, bx
|
||||||
|
mov es, es:[SegA000]
|
||||||
|
{$else FPC_MM_HUGE}
|
||||||
mov es, [SegA000]
|
mov es, [SegA000]
|
||||||
|
{$endif FPC_MM_HUGE}
|
||||||
add di, [StartYViewPort]
|
add di, [StartYViewPort]
|
||||||
(* Multiply by 80 start *)
|
(* Multiply by 80 start *)
|
||||||
mov cl, 4
|
mov cl, 4
|
||||||
|
Loading…
Reference in New Issue
Block a user