Gabor changes for TP

This commit is contained in:
pierre 2000-02-07 11:50:30 +00:00
parent 32004746f0
commit c4bd4949d9

View File

@ -250,6 +250,8 @@ type
destructor Done; virtual;
end;
{$ifdef TP} dword = longint; {$endif}
TIntRegs = record
eax,ebx,ecx,edx,eip,esi,edi,esp,ebp : dword;
cs,ds,es,ss,fs,gs : word;
@ -443,6 +445,12 @@ const
Store: @TFPUView.Store
);
{$ifdef TP}
function HexStr(Value: longint; Len: byte): string;
begin
HexStr:=IntToHexL(Value,Len);
end;
{$endif}
function GDBFileName(st : string) : string;
{$ifndef Linux}
@ -3209,7 +3217,10 @@ end.
{
$Log$
Revision 1.51 2000-02-06 23:43:57 pierre
Revision 1.52 2000-02-07 11:50:30 pierre
Gabor changes for TP
Revision 1.51 2000/02/06 23:43:57 pierre
* breakpoint path problems fixes
Revision 1.50 2000/02/05 01:27:58 pierre