-
Notifications
You must be signed in to change notification settings - Fork 3
/
POWER.PAS
85 lines (80 loc) · 2.24 KB
/
POWER.PAS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{ @author: Sylvain Maltais (support@gladir.com)
@created: 2023
@website(https://www.gladir.com/msdos0)
@abstract(Target: Turbo Pascal 7)
}
Program POWER;
Var
I:Integer;
Function StrToUpper(S:String):String;
Var
I:Byte;
Begin
For I:=1 to Length(S)do Begin
If S[I] in['a'..'z']Then S[I]:=Chr(Ord(S[I])-32);
End;
StrToUpper:=S;
End;
Function SetAPMMode(Mode:Word):Boolean;Assembler;ASM
{ Connecter l'interface RM }
MOV AX,5301h
XOR BX,BX
INT 15h
{ Active le pilote APM 1.1 }
MOV AX,530Eh
XOR BX,BX
MOV CX,0101h
INT 15h
{ Active l'APM }
MOV AX,5308h
MOV BX,1
MOV CX,BX
INT 15h
{ Demande la mode sp‚cifier }
MOV AX,5307h
mov BX,1
MOV CX,Mode
INT 15h
MOV AL,0
JC @Error
MOV AL,True
@Error:
@End:
END;
BEGIN
If(ParamStr(1)='/?')or(ParamStr(1)='--help')or(ParamStr(1)='-h')or
(ParamStr(1)='/h')or(ParamStr(1)='/H')Then Begin
WriteLn('POWER: Cette commande permet de fixer ou de ',
'demander les paramŠtres d''‚conomiseur ',
'd''‚nergie du systŠme d''exploitation.');
WriteLn;
WriteLn('Syntaxe: POWER ADV:MAX|MIN|OFF|REG|STD');
WriteLn;
WriteLn('MAX Ce paramŠtre permet d''utiliser au maximum ',
'l''alimentation en courant sans jamais tenter d''‚conomiser le courant.');
WriteLn('MIN Ce paramŠtre permet d''utiliser au minimum ',
'l''alimentation en courant.');
WriteLn('OFF Ce paramŠtre permet d''‚teindre l''ordinateur.');
WriteLn('REG Ce paramŠtre permet d''utiliser l''alimentation en ',
'courant selon les demandes des applications. ',
'Valeur par d‚faut.');
WriteLn('STD Ce paramŠtre permet d''effectuer la gestion propre ',
'au mat‚riel si compatible avec APM (Gestionnaire ',
'am‚liorer de courant).');
End
Else
If ParamCount>0 Then Begin
For I:=1 to ParamCount do Begin
If StrToUpper(ParamStr(I))='ADV:MIN'Then SetAPMMode(2)Else
If StrToUpper(ParamStr(I))='ADV:OFF'Then SetAPMMode(3)Else
If StrToUpper(ParamStr(I))='ADV:MAX'Then SetAPMMode(0)Else
If StrToUpper(ParamStr(I))='ADV:REG'Then SetAPMMode(0)Else
If StrToUpper(ParamStr(I))='ADV:STD'Then SetAPMMode(0)
Else
Begin
WriteLn('ParamŠtre inconnu ',ParamStr(I),'!');
Halt;
End;
End;
End;
END.