diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2024-09-28 10:01:26 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2024-09-28 10:01:26 -0400 |
commit | 376d7ec265085ae3a77664356a2ad35921cfccaf (patch) | |
tree | b2afd73c602889a59be763542c086371344ecabe /vgaterminal.cpp | |
parent | 8f9329da623bf0812df44f60867180020283ff3f (diff) |
millisecond pit; fix multiboot headers for optimization
Diffstat (limited to 'vgaterminal.cpp')
-rw-r--r-- | vgaterminal.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/vgaterminal.cpp b/vgaterminal.cpp index f2bb081..8158b14 100644 --- a/vgaterminal.cpp +++ b/vgaterminal.cpp @@ -46,11 +46,9 @@ void VGATerminal::checkpos() noexcept void VGATerminal::updatecursor() const noexcept { - asm volatile("cli"); outb(0x03d4, 0x0f); outb(0x03d5, static_cast<std::uint8_t>(offset)); outb(0x03d4, 0x0e); outb(0x03d5, static_cast<std::uint8_t>(offset >> 8)); - asm volatile("sti"); } |