fix: erreur d'opcode dans la fonction OUTW

This commit is contained in:
Nicolas Hordé 2007-04-02 12:55:34 +00:00
parent 4e19d4db4b
commit 9724a2a923
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@
asm volatile ("outb %%al,%%dx"::"d" (port), "a" (value));
#define outw(port,value) \
asm volatile ("outb %%ax,%%dx"::"d" (port), "a" (value));
asm volatile ("outw %%ax,%%dx"::"d" (port), "a" (value));
#define inb(port) ({ \
u8 _v; \