diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2024-09-27 19:43:17 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2024-09-27 19:43:17 -0400 |
commit | bd0acf88361a4b73a49d11a45177e72bf32091bc (patch) | |
tree | 86337c40d2430a1c202df785100061666cf72fba /kernel.cpp | |
parent | 35aa65037bebd800f9cba2b558d245552960a5d7 (diff) |
fix pit_busy_wait; better tasking
Diffstat (limited to 'kernel.cpp')
-rw-r--r-- | kernel.cpp | 31 |
1 files changed, 28 insertions, 3 deletions
@@ -10,6 +10,8 @@ static VGATerminal vga; TextOutput& term = vga; +static volatile bool termBusy = false; + void kernel_main(void) { term.write("Clyne's kernel, v2024\n\n"); @@ -28,18 +30,41 @@ void kernel_main(void) gdt_initialize(); pic_initialize(); idt_initialize(); - pit_initialize(50); + pit_initialize(100); asm volatile("sti"); tasking_initialize(); term.write("Tasking enabled.\n"); tasking_spawn([] { - for (;;) + for (;;) { + do pit_busy_wait(1); + while (termBusy); + + termBusy = true; term.write('B'); + termBusy = false; + } + }, 256); + + tasking_spawn([] { + for (;;) { + do pit_busy_wait(1); + while (termBusy); + + termBusy = true; + term.write('C'); + termBusy = false; + } }, 256); - for (;;) + for (;;) { + do pit_busy_wait(1); + while (termBusy); + + termBusy = true; term.write('A'); + termBusy = false; + } } extern "C" |