2021-04-05 20:50:58 +02:00
|
|
|
#ifndef ASM_H
|
|
|
|
#define ASM_H
|
|
|
|
|
|
|
|
#define outb(port,value) \
|
|
|
|
asm volatile ("outb %%al, %%dx" :: "a"(value), "d" (port) )
|
|
|
|
|
|
|
|
#define outbj(port,value) \
|
|
|
|
asm volatile ("outb %%al, %%dx;" :: "a" (value), "d"(port) )
|
|
|
|
|
2021-04-06 15:55:30 +02:00
|
|
|
#define inb(port,dst) \
|
|
|
|
asm volatile ("inb %%dx, %%al": "=a" (dst) : "d" (port))
|
2021-04-05 20:50:58 +02:00
|
|
|
#endif
|