diff options
author | Christian Cunningham <cc@localhost> | 2022-03-16 12:46:30 -0700 |
---|---|---|
committer | Christian Cunningham <cc@localhost> | 2022-03-16 12:46:30 -0700 |
commit | b7590870cfd909baca7b5dc1d954e233ec92092e (patch) | |
tree | 05f9747dc08d65c3910a5f2d7f1385eb0bb3ceb6 /src/cpu | |
parent | 4cf9e1ac0f0f6133baf4e8136e600ea51aaab65d (diff) |
List Schedule
Diffstat (limited to 'src/cpu')
-rw-r--r-- | src/cpu/irq.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/cpu/irq.c b/src/cpu/irq.c index 4947844..80ca7dd 100644 --- a/src/cpu/irq.c +++ b/src/cpu/irq.c @@ -33,6 +33,7 @@ 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) { |