Alain,
I have the A7N8X Deluxe Ver.2, and I was able to enable S2 using
WPCRSET. It is not enabled in the BIOS by default but by using
WPCRSET, it will automatically change the register to enable S2 every
time Windows starts.
Enabling the S2 dropped my idle temps by about 8C, an impressive
reduction. My Barton 2500, overclocked to 205 x 10.5, idles at about
33C and rarely gets over about 37C in normal use.
I'm out of the country for the next couple of weeks so I don't have
access to my machine to be able to tell you which register needs to be
changed and the proper value, but you should be able to do a Net
search and find info on it. The only caveat is that the A7N8X-X has a
slightly different BIOS than the A7N8X-D and the register location may
be different.
Good luck,
Doug
In WPCREDIT set offset "6F" from its default value to "1F".
Cheers,
Ed
--
btw, I made a little program that loads WPCREDIT makes the changes and
then closes it. I guess using WPCwrite(spelling?) would do the same or
better, I just didn't want to install it. ;p
' Visual Basic Code for WPCREDIT 6F setter by Ed Wilk.
'
Sub Main()
' Using basic built in Sendkeys commands.
DoEvents 'Start your engines!
x = Shell("WPCREDIT.EXE", vbNormalFocus)
Start! = Timer
Do Until (Timer - Start!) Mod 86400 > 30 ' 30 second max wait!
DoEvents
H = FindWindow(vbEmpty, "WPCREDIT for WIN32")
If H <> 0 Then Exit Do ' Found it!...Exit Do Loop...
Loop
On Error GoTo NotFnd
DoEvents
AppActivate ("WPCREDIT for WIN32"), False
DoEvents ' OK All systems GO!
' ***************************************************
' SEND REQUIRED KEYSTROKES TO CHANGE OFFSET 6F to 1F
' ***************************************************
For x = 1 To 15
SendKeys "{RIGHT}", True ' right arrow
DoEvents
Next x
AppActivate ("WPCREDIT for WIN32"), False
For x = 1 To 6
SendKeys "{DOWN}", True ' DOWN arrow
DoEvents
Next x
AppActivate ("WPCREDIT for WIN32"), False
SendKeys "{ENTER}", True
SendKeys "{UP}", True
SendKeys "{LEFT}", True
SendKeys "1", True
SendKeys "{ENTER}", True
DoEvents
AppActivate ("WPCREDIT for WIN32"), False
SendKeys "{ENTER}", True
Start! = Timer
Do Until (Timer - Start!) Mod 86400 > 1 ' 1 second max wait!
DoEvents
Loop
AppActivate ("WPCREDIT for WIN32"), False
SendKeys "%{F4}", True ' CLOSE IT
AllDone:
Exit Sub 'Elapsed CODE time on A7N8X Barton @2.3GHz, 0.171 seconds.
NotFnd:
MsgBox Error$
Resume AllDone
End Sub