blob: 61056fa4ba8966daeb6d3f9c59c927721e22ad86 (
plain)
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
|
extern char bpp;
int inb(int);
void foo()
{
if (bpp == 32)
{
if (2 < 8)
{
do
{
while (inb(0x9ae8) & (0x0100 >> (2 +1)));
}
while(0);
}
else
{
do
{
while (inb(0x9ae8) & (0x0100 >> (2)));
}
while(0);
}
}
else
do
{
while (inb(0x9ae8) & (0x0100 >> (1)));
}
while(0);
if (8 < 8)
{
do
{
while (inb(0x9ae8) & (0x0100 >> (8 +1)));
}
while(0);
}
}
|