How Reset CMOS ?????

Only for programmers and BIOS gurus with technical questions.
Post Reply
sitevirtual
New visitors - please read the rules.
Posts: 1
Joined: Mon Feb 16, 2004 9:05 pm

:oops: I no speak english ( + or - )
I am Brazilian....


How to reset the CMOS using the Delphi? I can also use the Assembly? I have a routine but he does not function in the M810 of the PCCHIPS

Source Assembly into Delphi:

procedure SetResetBios1;
begin
asm
mov ax,2eh
out 70h,ax
mov ax,2fh
out 71h,ax
end;
end;


Other function:

function SetResetBios2;
begin
asm
mov dx,$70
mov ax,$2e
out dx,ax
mov dx,$71
mov ax,$ff
out dx,ax
end;
end;

Help-me !!!!!!!!!!!!!

Tank's

Robson Dantas (BRAZIL)
Post Reply