Replace busy-wait cli_delay with time-based cli_sleep in remaining files

This commit is contained in:
Chris
2026-02-08 14:54:36 +01:00
parent b245dc5f00
commit 9728222d3c
5 changed files with 6 additions and 6 deletions

View File

@@ -11,6 +11,6 @@ void cli_cmd_beep(char *args) {
outb(0x42, (div >> 8) & 0xFF);
outb(0x61, inb(0x61) | 0x03);
cli_delay(10000000);
cli_sleep(100);
outb(0x61, inb(0x61) & 0xFC);
}