Posted on February 23, 2004 at 21:03 Turns out, my suggestion wasn't complete First of all, the SBMisc0 register has to be accessed with a 32b access. Then you can do it. This works better: Code: mov eax, 80006040h mov dx,0cf8h ...
Posted on February 06, 2004 at 17:36So that would be 0x80006040, resulting in something like this(?): Code: <BR>mov ax, 80006040h ;SB_Misc0 <BR>mov dx, 0cf8h <BR>out dx,ax <BR> <BR>mov ax 2 ; enable gpio <BR>mov dx, 0cfch <BR>out dx,ax <BR>Then we a...