13 lines
191 B
C
13 lines
191 B
C
/*----------------*\
|
|
|Nanite OS |
|
|
|Copyright (C) 2024|
|
|
|Tyler McGurrin |
|
|
\*----------------*/
|
|
#include "io.h"
|
|
|
|
#define UNUSED_PORT 0x80
|
|
|
|
void iowait()
|
|
{
|
|
outb(UNUSED_PORT, 0);
|
|
} |