Add detection/dump support for ServerEngines SE-SM 4210-P01.
[coreboot.git] / util / romcc / tests / simple_test25.c
1 #define COUNT 26
2 static void main(void)
3 {
4         unsigned char a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p, q, r, s, t, u, v, w, x, y, z;
5         a = 1;
6         b = 2;
7         c = 3;
8         d = 4;
9         e = 5;
10         f = 6;
11         g = 7;
12         h = 8;
13         i = 9;
14         j = 10;
15         k = 11;
16         l = 12;
17         m = 13;
18         n = 14;
19         o = 15;
20         p = 16;
21         q = 17;
22         r = 18;
23         s = 19;
24         t = 20;
25         u = 21;
26         v = 22;
27         w = 23;
28         x = 24;
29         y = 25;
30         z = 26;
31 #if COUNT >= 26
32         __builtin_outb(z, 0xab);
33 #endif
34 #if COUNT >= 25
35         __builtin_outb(y, 0xab);
36 #endif
37 #if COUNT >= 24
38         __builtin_outb(x, 0xab);
39 #endif
40 #if COUNT >= 23
41         __builtin_outb(w, 0xab);
42 #endif
43 #if COUNT >= 22
44         __builtin_outb(v, 0xab);
45 #endif
46 #if COUNT >= 21
47         __builtin_outb(u, 0xab);
48 #endif
49 #if COUNT >= 20
50         __builtin_outb(t, 0xab);
51 #endif
52 #if COUNT >= 19
53         __builtin_outb(s, 0xab);
54 #endif
55 #if COUNT >= 18
56         __builtin_outb(r, 0xab);
57 #endif
58 #if COUNT >= 17
59         __builtin_outb(q, 0xab);
60 #endif
61 #if COUNT >= 16
62         __builtin_outb(p, 0xab);
63 #endif
64 #if COUNT >= 15
65         __builtin_outb(o, 0xab);
66 #endif
67 #if COUNT >= 14
68         __builtin_outb(n, 0xab);
69 #endif
70 #if COUNT >= 13
71         __builtin_outb(m, 0xab);
72 #endif
73 #if COUNT >= 12
74         __builtin_outb(l, 0xab);
75 #endif
76 #if COUNT >= 11
77         __builtin_outb(k, 0xab);
78 #endif
79 #if COUNT >= 10
80         __builtin_outb(j, 0xab);
81 #endif
82 #if COUNT >= 9
83         __builtin_outb(i, 0xab);
84 #endif
85 #if COUNT >= 8
86         __builtin_outb(h, 0xab);
87 #endif
88 #if COUNT >= 7
89         __builtin_outb(g, 0xab);
90 #endif
91 #if COUNT >= 6
92         __builtin_outb(f, 0xab);
93 #endif
94 #if COUNT >= 5
95         __builtin_outb(e, 0xab);
96 #endif
97 #if COUNT >= 4
98         __builtin_outb(d, 0xab);
99 #endif
100 #if COUNT >= 3
101         __builtin_outb(c, 0xab);
102 #endif
103 #if COUNT >= 2
104         __builtin_outb(b, 0xab);
105 #endif
106 #if COUNT >= 1
107         __builtin_outb(a, 0xab);
108 #endif
109 }