+ set cobjdata in TIntelHexExeOutput.create;

git-svn-id: trunk@45548 -
This commit is contained in:
nickysn 2020-06-01 13:53:28 +00:00
parent 6104cd321c
commit 3685b50e75

View File

@ -111,6 +111,8 @@ interface
protected
function writeData:boolean;override;
procedure DoRelocationFixup(objsec:TObjSection);override;
public
constructor create;override;
end;
implementation
@ -683,6 +685,12 @@ implementation
begin
end;
constructor TIntelHexExeOutput.create;
begin
inherited create;
CObjData:=TRelObjData;
end;
{*****************************************************************************
Initialize
*****************************************************************************}