mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-16 05:59:28 +02:00
* use a farpointer on i8086 in the getintvec and setintvec generic "do nothing"
implementation to match the interface declaration in dosh.inc git-svn-id: trunk@31888 -
This commit is contained in:
parent
114dfe41a3
commit
7f086bb154
@ -151,7 +151,7 @@ end;
|
||||
|
||||
|
||||
{$IFNDEF HAS_GETINTVEC}
|
||||
procedure GetIntVec (IntNo: byte; var Vector: pointer);
|
||||
procedure GetIntVec (IntNo: byte; var Vector: {$ifdef cpui8086}farpointer{$else}pointer{$endif});
|
||||
begin
|
||||
Vector := nil;
|
||||
end;
|
||||
@ -159,7 +159,7 @@ end;
|
||||
|
||||
|
||||
{$IFNDEF HAS_SETINTVEC}
|
||||
procedure SetIntVec (IntNo: byte; Vector: pointer);
|
||||
procedure SetIntVec (IntNo: byte; Vector: {$ifdef cpui8086}farpointer{$else}pointer{$endif});
|
||||
begin
|
||||
end;
|
||||
{$ENDIF HAS_SETINTVEC}
|
||||
|
Loading…
Reference in New Issue
Block a user