summaryrefslogtreecommitdiff
path: root/test/misc/outb.c
blob: bbe18eaec0aed694511dcc400a85f49c3b963461 (plain)
1
2
3
4
5
6
7
8
9
#include <sys/io.h>

int main(void)
{
    ioperm(0x340,0x342,1);
    outb(0x340,0x0);
    exit(0);
}