diff options
author | Christian Cunningham <cc@localhost> | 2022-03-18 11:49:35 -0700 |
---|---|---|
committer | Christian Cunningham <cc@localhost> | 2022-03-18 11:49:35 -0700 |
commit | 7ea4a4e970ae4a72ac7b58e98d232662d580ed47 (patch) | |
tree | fffa7533ad1b331726deb5258d9878d9a750160a /src/cpu | |
parent | 15205711b35db0d8ac5516f84ba73fa3550ccc62 (diff) |
Removed old debug call
Diffstat (limited to 'src/cpu')
-rw-r--r-- | src/cpu/irq.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/cpu/irq.c b/src/cpu/irq.c index 694742a..6a5b43f 100644 --- a/src/cpu/irq.c +++ b/src/cpu/irq.c @@ -33,7 +33,6 @@ void c_irq_handler(void) // Handle the recieved data // Ctrl+T to toggle timer if(data == 0x14) { - uart_scheduler(); unsigned long timer_status; asm volatile("mrc p15, 0, %0, c14, c3, 1" : "=r"(timer_status)); if(timer_status == 0) { |