11 lines
222 B
C
11 lines
222 B
C
![]() |
#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) )
|
||
|
|
||
|
|
||
|
#endif
|