]> Joshua Wise's Git repositories - netwatch.git/blob - aseg/counter.c
Don't clear BSS if we don't need to.
[netwatch.git] / aseg / counter.c
1 char counter = 0;
2
3 #define outb(port, val) \
4 ({ asm volatile("outb %0, %%dx" : : "a" ((unsigned char)(val)) , "d" ((unsigned short)(port))); })
5
6 void __start (void)
7 {
8         counter++;
9         outb (0x80, counter);
10 }
11
This page took 0.022954 seconds and 4 git commands to generate.