modified Analyzer.dof
modified AnalyzerU.pas x: RAW-view was not cleared upon load of a new dump from file or SMBus
This commit is contained in:
parent
6abf8212d6
commit
0197a89f1c
@ -115,7 +115,7 @@ AutoIncBuild=1
|
|||||||
MajorVer=1
|
MajorVer=1
|
||||||
MinorVer=0
|
MinorVer=0
|
||||||
Release=0
|
Release=0
|
||||||
Build=5
|
Build=6
|
||||||
Debug=0
|
Debug=0
|
||||||
PreRelease=0
|
PreRelease=0
|
||||||
Special=0
|
Special=0
|
||||||
@ -126,7 +126,7 @@ CodePage=1252
|
|||||||
[Version Info Keys]
|
[Version Info Keys]
|
||||||
CompanyName=
|
CompanyName=
|
||||||
FileDescription=Parses SONY VAIO security eeprom dump and extracts some interesting information.
|
FileDescription=Parses SONY VAIO security eeprom dump and extracts some interesting information.
|
||||||
FileVersion=1.0.0.5
|
FileVersion=1.0.0.6
|
||||||
InternalName=Analyzer
|
InternalName=Analyzer
|
||||||
LegalCopyright=
|
LegalCopyright=
|
||||||
LegalTrademarks=
|
LegalTrademarks=
|
||||||
|
@ -88,6 +88,7 @@ var i: integer;
|
|||||||
begin
|
begin
|
||||||
tmph := '';
|
tmph := '';
|
||||||
tmpb := '';
|
tmpb := '';
|
||||||
|
AForm.ListRAW.Clear;
|
||||||
for i:=0 to 255 do begin
|
for i:=0 to 255 do begin
|
||||||
tmph := tmph + ' ' + IntToHex(x[i], 2);
|
tmph := tmph + ' ' + IntToHex(x[i], 2);
|
||||||
if (x[i] IN [$20..$FF]) then tmpb := tmpb + Chr(x[i]) else tmpb := tmpb + '.';
|
if (x[i] IN [$20..$FF]) then tmpb := tmpb + Chr(x[i]) else tmpb := tmpb + '.';
|
||||||
|
Reference in New Issue
Block a user