We have a better way to wait ten microseconds then inbs:

tenmicrosec() now use DELAY(10)
This commit is contained in:
ache 1994-04-11 18:17:12 +00:00
parent f1e9ab81ed
commit e5274bcaba

View File

@ -262,10 +262,7 @@ sndattach (struct isa_device *dev)
void
tenmicrosec (void)
{
int i;
for (i = 0; i < 16; i++)
inb (0x80);
DELAY(10);
}
#ifdef EXCLUDE_GUS