aboutsummaryrefslogtreecommitdiff
path: root/src/cpu
diff options
context:
space:
mode:
authorChristian Cunningham <cc@localhost>2022-02-04 18:24:31 -0700
committerChristian Cunningham <cc@localhost>2022-02-04 18:24:31 -0700
commit13b2bf797bdf4fab0115675c4d2541fff05e285c (patch)
tree6b622ffe738a8eb76e0c0f7050fab13d1bf1acad /src/cpu
parent6e7f93d6a09865937dde1124a6c3f36eebcd9d82 (diff)
Implemented new Real-Time friendly Memory Allocation Scheme
Diffstat (limited to 'src/cpu')
-rw-r--r--src/cpu/irq.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/cpu/irq.c b/src/cpu/irq.c
index ac08c05..6be4bc7 100644
--- a/src/cpu/irq.c
+++ b/src/cpu/irq.c
@@ -103,13 +103,5 @@ void handle_data(unsigned char data)
add_thread(uart_scheduler, 0, 2);
} else if (data == 0x62) {
add_thread(heap_info, 0, 2);
- } else {
}
- g_Drawer.x = 0;
- g_Drawer.y = 7;
- for(int i = 0; i < 128; i++)
- write_char(&g_Drawer, ' ');
- g_Drawer.x = 0;
- g_Drawer.y = 7;
- write_string(&g_Drawer, "> ");
}