Fix PIC, add small delays when initializing

This commit is contained in:
2025-11-18 23:27:49 +01:00
parent 638214a0e2
commit 28c95303e9
8 changed files with 51 additions and 24 deletions

View File

@ -45,3 +45,7 @@ void io_outs16(uint16_t port, const void *addr, int cnt) {
: "memory", "cc"
);
}
void io_wait(void) {
io_out8(0x80, 0);
}