summaryrefslogtreecommitdiffstats
path: root/src/kernel/kernel.C
blob: 2d97204e1157d6bdac3dccdd3abf1fa5f91d876d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <stdint.h>
#include <kernel/console.H>

int main()
{
    printk("Booting Chenoo kernel...\n");
    printk("Testing a character %c %c %c\n", 'a', 'b', 'c');
    printk("Testing numbers %hhd %hu %x %lx %lld\n",
		(char)-1, (short)1234, 0xabcdef12, 0xdeadbeef, 
		0x0123456789abcdef);
    while(1);

    return 0;
}
OpenPOWER on IntegriCloud