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