diff options
| author | Felix Morgner <felix.morgner@ost.ch> | 2023-10-11 20:16:55 +0200 |
|---|---|---|
| committer | Felix Morgner <felix.morgner@ost.ch> | 2023-10-11 20:16:55 +0200 |
| commit | 9e7fba5959bc91ad549809551c99756e34f245db (patch) | |
| tree | 5a2975362c719221c849f6fdf4b1ffa45af46c7e /source/arch/x86_64/src/kernel | |
| parent | 18863e0f3db23441c0213745ad6de3722fd4c845 (diff) | |
| download | teachos-9e7fba5959bc91ad549809551c99756e34f245db.tar.xz teachos-9e7fba5959bc91ad549809551c99756e34f245db.zip | |
x86_64: vga: implement basic cursor configuration
Diffstat (limited to 'source/arch/x86_64/src/kernel')
| -rw-r--r-- | source/arch/x86_64/src/kernel/main.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/source/arch/x86_64/src/kernel/main.cpp b/source/arch/x86_64/src/kernel/main.cpp index 26ae730..0e90264 100644 --- a/source/arch/x86_64/src/kernel/main.cpp +++ b/source/arch/x86_64/src/kernel/main.cpp @@ -9,6 +9,7 @@ namespace teachos::arch::kernel using namespace video::vga; text::clear(); + text::cursor(false); text::write("TeachOS is starting up...", text::common_attributes::green_on_black); } } // namespace teachos::arch::kernel |
