Исправление ошибки операнда

This commit is contained in:
Aren Elchinyan 2023-12-15 21:58:52 +03:00
parent 02ba9d199b
commit 8ca0335c8f
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ static void handler( ) {
default: break;
}
uint8_t status = inb(0x61) |= 1;
uint8_t status = inb(0x61) | 1;
outb(0x61, status);
}