mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-24 17:49:07 +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}
|
{$IFNDEF HAS_GETINTVEC}
|
||||||
procedure GetIntVec (IntNo: byte; var Vector: pointer);
|
procedure GetIntVec (IntNo: byte; var Vector: {$ifdef cpui8086}farpointer{$else}pointer{$endif});
|
||||||
begin
|
begin
|
||||||
Vector := nil;
|
Vector := nil;
|
||||||
end;
|
end;
|
||||||
@ -159,7 +159,7 @@ end;
|
|||||||
|
|
||||||
|
|
||||||
{$IFNDEF HAS_SETINTVEC}
|
{$IFNDEF HAS_SETINTVEC}
|
||||||
procedure SetIntVec (IntNo: byte; Vector: pointer);
|
procedure SetIntVec (IntNo: byte; Vector: {$ifdef cpui8086}farpointer{$else}pointer{$endif});
|
||||||
begin
|
begin
|
||||||
end;
|
end;
|
||||||
{$ENDIF HAS_SETINTVEC}
|
{$ENDIF HAS_SETINTVEC}
|
||||||
|
Loading…
Reference in New Issue
Block a user