* updated ppudump after r25672

git-svn-id: trunk@25673 -
This commit is contained in:
nickysn 2013-10-06 00:45:03 +00:00
parent f165cee058
commit 9ed0d6d40d

View File

@ -2401,9 +2401,15 @@ begin
Writeln(['Assembler name : ',getstring]);
toaddr :
begin
Write(['Address : ',getlongint]);
Write(['Address : ',getaword]);
if tsystemcpu(ppufile.header.cpu)=cpu_i386 then
WriteLn([' (Far: ',getbyte<>0,')']);
Write([' (Far: ',getbyte<>0,')']);
if tsystemcpu(ppufile.header.cpu)=cpu_i8086 then
if getbyte<>0 then
Write([' (Far: TRUE, Segment=',getaword,')'])
else
Write([' (Far: FALSE)']);
Writeln;
end;
else
Writeln (['!! Invalid unit format : Invalid absolute type encountered: ',b]);