* 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:
nickysn 2015-09-29 13:16:56 +00:00
parent 114dfe41a3
commit 7f086bb154

View File

@ -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}