diff options
| author | Felix Morgner <felix.morgner@ost.ch> | 2025-12-12 10:51:55 +0100 |
|---|---|---|
| committer | Felix Morgner <felix.morgner@ost.ch> | 2025-12-12 10:51:55 +0100 |
| commit | 4bb59ebf68351754ab97e722914e0434c4d347fd (patch) | |
| tree | 926ffcc21d896f143bf3daddb203d0e15571259a | |
| parent | d89dd14c4492144d54ad755932b3e2c89a17bf74 (diff) | |
| download | teachos-4bb59ebf68351754ab97e722914e0434c4d347fd.tar.xz teachos-4bb59ebf68351754ab97e722914e0434c4d347fd.zip | |
x86_64/cio: disable cursor by default
| -rw-r--r-- | arch/x86_64/src/kapi/cio.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/x86_64/src/kapi/cio.cpp b/arch/x86_64/src/kapi/cio.cpp index 456477a..3f169a1 100644 --- a/arch/x86_64/src/kapi/cio.cpp +++ b/arch/x86_64/src/kapi/cio.cpp @@ -11,6 +11,7 @@ namespace teachos::cio auto init() -> void { vga_device.emplace(); + vga_device->cursor(false); set_output_device(*vga_device); } |
