Removed HlIoPortWait(), fixed PIC port addresses, improved formatting

This commit is contained in:
Jozef Nagy
2023-11-28 17:00:14 +01:00
parent 656c6b7d59
commit 0efd9ade59
10 changed files with 50 additions and 111 deletions

View File

@@ -143,19 +143,3 @@ HlIoPortOutShort(IN USHORT Port,
: "a" (Value),
"Nd" (Port));
}
/**
* Sends a 0x00 byte to an unused IO port.
* This operation takes 1 - 4 microseconds and functions as an
* imprecise wait function.
*
* @return This routine does not return any value.
*
* @since XT 1.0
*/
XTCDECL
VOID
HlIoPortWait(VOID)
{
HlIoPortOutByte(0x80, 0x00);
}