Since some people disapprove of white space cleanups mixed in regular commits
[coreboot.git] / util / romcc / tests / simple_test37.c
1 static void main(void)
2 {
3         unsigned csbase, csmask;
4
5         csbase = 0x40;
6         csmask = 0xfe00;
7
8         __builtin_outl(csbase, 0x40);
9         __builtin_outl(csmask, 0x60);
10 }