Archived
1
0

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:
mbirth 2004-12-08 09:55:32 +00:00
parent 6abf8212d6
commit 0197a89f1c
2 changed files with 3 additions and 2 deletions

View File

@ -115,7 +115,7 @@ AutoIncBuild=1
MajorVer=1
MinorVer=0
Release=0
Build=5
Build=6
Debug=0
PreRelease=0
Special=0
@ -126,7 +126,7 @@ CodePage=1252
[Version Info Keys]
CompanyName=
FileDescription=Parses SONY VAIO security eeprom dump and extracts some interesting information.
FileVersion=1.0.0.5
FileVersion=1.0.0.6
InternalName=Analyzer
LegalCopyright=
LegalTrademarks=

View File

@ -88,6 +88,7 @@ var i: integer;
begin
tmph := '';
tmpb := '';
AForm.ListRAW.Clear;
for i:=0 to 255 do begin
tmph := tmph + ' ' + IntToHex(x[i], 2);
if (x[i] IN [$20..$FF]) then tmpb := tmpb + Chr(x[i]) else tmpb := tmpb + '.';