Broken term scrolling

This commit is contained in:
2026-01-10 14:43:51 +01:00
parent b469952d91
commit 091f94f89e
6 changed files with 26 additions and 23 deletions

View File

@@ -44,7 +44,7 @@ void pic_enable()
// Enabling IRQ0 (unmasking it) but not the others
uint8_t mask = inb(0x21);
mask &= ~(1 << 0); // Set IRQ0 (timer, clear bit 0)
mask &= ~(1 << 1); // Set IRQ1 (PS/2 Keyboard, clear bit 1)
//mask &= ~(1 << 1); // Set IRQ1 (PS/2 Keyboard, clear bit 1)
outb(0x21, mask);
}