diff --git a/Analyzer.dof b/Analyzer.dof index 57f19d0..6690411 100644 --- a/Analyzer.dof +++ b/Analyzer.dof @@ -115,7 +115,7 @@ AutoIncBuild=1 MajorVer=1 MinorVer=0 Release=0 -Build=2 +Build=4 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.2 +FileVersion=1.0.0.4 InternalName=Analyzer LegalCopyright= LegalTrademarks= diff --git a/AnalyzerU.dfm b/AnalyzerU.dfm index 4881ee9..2818eff 100644 --- a/AnalyzerU.dfm +++ b/AnalyzerU.dfm @@ -42,7 +42,7 @@ object AForm: TAForm Top = 48 Width = 497 Height = 329 - ActivePage = SheetSMBus + ActivePage = SheetAbout TabOrder = 1 object SheetParsed: TTabSheet Caption = 'Parsed info' @@ -587,6 +587,10 @@ object AForm: TAForm ' ' 'case you forgot your machine password.' '' + '2004-03-31: added support for reading out the SMBus directly ' + 'from Windows. Make sure the file ZLPORTIO.SYS is in this ' + 'program'#39's directory or in the search path.' + '' 'Have fun!' '' '' diff --git a/AnalyzerU.pas b/AnalyzerU.pas index 1ec1d7e..b93fa07 100644 --- a/AnalyzerU.pas +++ b/AnalyzerU.pas @@ -323,7 +323,7 @@ end; procedure TAForm.ButtonSMBScanClick(Sender: TObject); begin - AForm.LabelSMBScan.Caption := IntToHex(smbGetReg(MyPCI.SMB_Address, $01, $10), 2); + AForm.LabelSMBScan.Caption := 'Not yet functioning'; end; end.