summaryrefslogtreecommitdiffstats
path: root/kernel.c
blob: fe019e583290e6b364b8ca9e42dc611a96a03aea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14

void _main(void)
{
    unsigned int i = 100;
    while(i != 0)
    {
	asm volatile("eieio");
	i--;
    }

    while(1)
    {
    }
}
OpenPOWER on IntegriCloud