-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMEQUIPE.PAS
149 lines (129 loc) · 3.04 KB
/
CMEQUIPE.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
Unit CMEquipe;
(***********************************)
Interface
(***********************************)
Uses DOS;
Function CoprosseurMathematique : Byte;
Function HardWare : Byte;
Function Model : Byte;
Function ModeVideo : Byte;
Function NombreDisque : Byte;
Function NombreDMA : Byte;
Function NombreImprimante : Byte;
Function NombreManetteJeu : Byte;
Function NombreRS232 : Byte;
Function TailleRAM : Real;
Function MemoireLibre : Real;
Function TypeDisque(Drive:Byte) : Byte;
Function Souris : Byte;
Function Bouton : Byte;
(***********************************)
Implementation
(***********************************)
Var Equipe : Word Absolute $0040 : $10;
Registre : Registers;
Function CoprosseurMathematique : Byte;
Begin
CoprosseurMathematique := (Equipe and $0002)shr 1;
End;
Function HardWare : Byte;
Var SwitchEGA,Info : Byte;
Begin
Registre.AH := $12;
Registre.BL := $10;
Intr($10,Registre);
Info := Registre.BH;
SwitchEGA := Registre.CL;
If(Mem[$FFFF:$000E]=$FD)Then HardWare := $0A
else
If((Equipe and 48)in [16,32])or(((Equipe and 52)=4)and(SwitchEGA in[4,5,10,11]))Then HardWare := $0C
else
If((Equipe and 52)in [0,16,32])and(Info=0)Then HardWare := $0E Else
HardWare := $00;
End;
Function Model : Byte;
Begin
Model:=(Equipe and $2000)shr 13;
End;
Function ModeVideo : Byte;
Begin
ModeVideo:=(Equipe and $0030)shr 4;
End;
Function NombreDisque : Byte;
Label 10;
Var Original,Position : Byte;
Begin
Registre.AH := $19;
MsDos(Registre);
Original := Registre.AL;
Position := 1;
10 : Registre.AH := $0E;
Registre.DL := Position;
MsDos(Registre);
Registre.AH := $19;
MsDos(Registre);
If(Registre.AL = Position)Then
Begin
Inc(Position);
Goto 10;
End;
NombreDisque := Position;
Registre.AH := $0E;
Registre.DL := Original;
MsDos(Registre);
End;
Function NombreDMA : Byte;
Begin
NombreDMA:=(Equipe and $0100)shr 8;
End;
Function NombreImprimante : Byte;
Begin
NombreImprimante := (Equipe and $C000) shr 14;
End;
Function NombreManetteJeu : Byte;
Begin
NombreManetteJeu := (Equipe and $1000)shr 12
End;
Function NombreRS232 : Byte;
Begin
NombreRS232:=(Equipe and $0E00)shr 9;
End;
Function TailleRAM : Real;
Begin
Intr($12,Registre);
TailleRAM := Registre.AX*1024.0;
End;
Function MemoireLibre : Real;
Begin
Registre.AH := $48;
Registre.BX := $FFFF;
MsDos(Registre);
MemoireLibre := Registre.BX * 16.0;
End;
Function TypeDisque(Drive:Byte) : Byte;
Begin
Registre.AH := $1C;
Registre.DL := Drive;
MsDos(Registre);
If(Registre.AL = $FF)Then TypeDisque := $03
Else TypeDisque := Mem[Registre.DS:Registre.BX];
End;
Function Souris : Byte;
Begin
InLine($B8/$01/$00/ { MOV AX,0001 }
$CD/$33); { INT 33 }
Registre.AH := $00;
Intr($33,Registre);
If(Registre.AX = $FFFF)Then Souris := 0
Else Souris := 1;
InLine($B8/$02/$00/ { MOV AX,0002 }
$CD/$33); { INT 33 }
End;
Function Bouton : Byte;
Begin
Registre.AH := $00;
Intr($33,Registre);
If(Registre.AX = 0)Then Bouton := Registre.BX
Else Bouton := 0;
End;
End.