aboutsummaryrefslogtreecommitdiff
path: root/util/romcc/tests/simple_test13.c
blob: 563ba54bc455d154a2d25d6d5531776ac3e04450 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
static void outb(unsigned char value, unsigned short port)
{
        __builtin_outb(value, port);
}

static void uart_init(void)
{

	int a;
	if (1 == 1) {
		a = 1;
		outb(a, 0x3f8);
	} else {
		a = 2;
		outb(a, 0x3f8);
	}
	outb(a, 0x3f8);
}

static void main(void)
{
	uart_init();
}