mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-07-18 08:16:08 +02:00
* properly read asizeints from ppus on 16 bit targets
git-svn-id: branches/i8086@23939 -
This commit is contained in:
parent
228f2d2794
commit
bac18a0094
@ -814,11 +814,13 @@ begin
|
|||||||
result:=0;
|
result:=0;
|
||||||
end;
|
end;
|
||||||
{$else not generic_cpu}
|
{$else not generic_cpu}
|
||||||
{$ifdef cpu64bitaddr}
|
{$if defined(cpu64bitaddr)}
|
||||||
result:=getint64;
|
result:=getint64;
|
||||||
{$else cpu64bitaddr}
|
{$elseif defined(cpu32bitaddr)}
|
||||||
result:=getlongint;
|
result:=getlongint;
|
||||||
{$endif cpu32bitaddr}
|
{$elseif defined(cpu16bitaddr)}
|
||||||
|
result:=getword;
|
||||||
|
{$endif}
|
||||||
{$endif not generic_cpu}
|
{$endif not generic_cpu}
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user