-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCPUUNDOC.PAS
194 lines (180 loc) · 2.81 KB
/
CPUUNDOC.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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
Program TestCPU;
Uses Adele,Systex,Systems,Video,Dials;
Var
OutputIPOfs:Word;
Procedure Int06h(Flags,CS,IP,AX,BX,CX,DX,SI,DI,DS,ES,BP:Word);Interrupt;Begin
IP:=OutputIPOfs;
End;
Function TestSETALC:Boolean;
Label Xit;
Begin
TestSETALC:=False;
ASM
MOV OutputIPOfs,Offset Xit
END;
InLine($D6); { SETALC }
TestSETALC:=True;
Xit:
End;
Function TestUMOV:Boolean;
Label Xit;
Begin
TestUMOV:=False;
ASM
MOV OutputIPOfs,Offset Xit
DB 0Fh,010h,0D8h { MOV AL,BL }
NOP
NOP
NOP
NOP
END;
TestUMOV:=True;
Xit:
End;
Function TestXBTS:Boolean;
Label Xit;
Begin
TestXBTS:=False;
ASM
MOV OutputIPOfs,Offset Xit
MOV AX,1
MOV BX,AX
MOV CL,1
MOV DX,AX
DB 0Fh,0A6h,0DAh { XBTS BX,DX,AX,AL }
NOP
NOP
END;
TestXBTS:=True;
Xit:
End;
Function TestIBTS:Boolean;
Label Xit;
Begin
TestIBTS:=False;
ASM
MOV OutputIPOfs,Offset Xit
MOV AX,1
MOV BX,AX
MOV CL,1
MOV DX,AX
DB 0Fh,0A7h,0DAh { IBTS BX,DX,AX,AL }
NOP
NOP
END;
TestIBTS:=True;
Xit:
End;
Function TestRDTSC:Boolean;
Label Xit;
Begin
TestRDTSC:=False;
ASM
MOV OutputIPOfs,Offset Xit
DB 66h; XOR AX,AX { XOR EAX,EAX }
DB 66h; XOR DX,DX { XOR EDX,EDX }
DB 0Fh,031h { RDTSC }
NOP
NOP
NOP
NOP
END;
TestRDTSC:=True;
Xit:
End;
Function TestAAMx:Boolean;
Label Xit;
Begin
TestAAMx:=False;
ASM
MOV OutputIPOfs,Offset Xit
MOV AX,0FF12h
DB 0D4h,008h { AAM 8 }
NOP
NOP
NOP
NOP
CMP AX,0202h
JNE Xit
END;
TestAAMx:=True;
Xit:
End;
Function TestAADx:Boolean;
Label Xit;
Begin
TestAADx:=False;
ASM
MOV OutputIPOfs,Offset Xit
MOV AX,00705h
DB 0D5h,010h { AAD 10h }
NOP
NOP
NOP
NOP
CMP AX,0075h
JNE Xit
END;
TestAADx:=True;
Xit:
End;
Function TestCPUID:Boolean;
Label Xit;
Begin
TestCPUID:=False;
ASM
MOV OutputIPOfs,Offset Xit
DB 66h;XOR AX,AX { XOR EAX,EAX }
DB 00Fh,0A2h { CPUID }
NOP
NOP
NOP
NOP
END;
TestCPUID:=True;
Xit:
End;
Function TestBSWAP:Boolean;
Label Xit;
Begin
TestBSWAP:=False;
ASM
MOV OutputIPOfs,Offset Xit
DB 00Fh,0C8h { BSWAP EAX }
NOP
NOP
NOP
NOP
END;
TestBSWAP:=True;
Xit:
End;
Procedure CheckUndocInstr;
Var
OldInt06h:Pointer;
Begin
If(CPU<cpu80286)Then ErrMsgOk('Microprocesseur 80286 ou plus requis')
Else
Begin
GetIntVec($06,OldInt06h);
SetIntVec($06,@Int06h);
WriteLn('Teste avanc‚ des instructions du CPU');
WriteLn;
WriteLn('(D5h,xxh) AAD xxh: ',TestAADx);
WriteLn('(D4h,xxh) AAM xxh: ',TestAAMx);
WriteLn('(0Fh,C8h) BSWAP: ',TestBSWAP);
WriteLn('(0Fh,A2h) CPUID: ',TestCPUID);
WriteLn('(0Fh,A7h) IBTS: ',TestIBTS);
WriteLn('(0Fh,31h) RDTSC: ',TestRDTSC);
WriteLn('(D6h) SETALC: ',TestSETALC);
WriteLn('(0Fh,1xh) UMOV: ',TestUMOV);
WriteLn('(0Fh,A6h) XBTS: ',TestXBTS);
SetIntVec($06,OldInt06h);
End;
End;
BEGIN
InitSystems(suIsabel);
InitVideoDeluxe;
CheckUndocInstr;
UnLuxe;
END.