blob: cf9ee8ab0f17ac6895361f2c506c00f705a0e206 [file] [log] [blame]
Eric Biederman530b5192003-07-01 10:05:30 +00001
2static void main(void)
3{
4 int i;
5 i = __builtin_inb(0x1234);
6 goto next;
7 int j;
8 j = __builtin_inb(0xabcd);
9 __builtin_outb(j, 0xef90);
10 next:
11 __builtin_outb(i, 0x5678);
Stefan Reinauer14e22772010-04-27 06:56:47 +000012
Eric Biederman530b5192003-07-01 10:05:30 +000013}