卷
卷起千堆雪tyn
Unregistered / Unconfirmed
GUEST, unregistred user!
procedure outportb(addr : Word; value : Byte);
asm
mov dx, addr
mov al, value
out dx, al
end;
这样写是否正确?
asm
mov dx, addr
mov al, value
out dx, al
end;
这样写是否正确?