aboutsummaryrefslogtreecommitdiff
path: root/src/cpu
diff options
context:
space:
mode:
authorChristian Cunningham <cc@localhost>2022-01-23 13:04:54 -0700
committerChristian Cunningham <cc@localhost>2022-01-23 13:04:54 -0700
commitc3f0c731c91b6edf5d9142d07c26e7d4fca28522 (patch)
tree7c4d3122f9c09958c1c85d386e1ce1741ccfe3ac /src/cpu
parent5bb02975ac5f541245af9b4f6c0be4ffaa2d8463 (diff)
IRQ data sent to thread
Diffstat (limited to 'src/cpu')
-rw-r--r--src/cpu/irq.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cpu/irq.c b/src/cpu/irq.c
index 2697797..1b5e09f 100644
--- a/src/cpu/irq.c
+++ b/src/cpu/irq.c
@@ -85,7 +85,7 @@ void c_irq_handler(void)
} else if (data == 0x62) {
cmd[off] = (char) data;
off += 1;
- heap_info();
+ add_thread(heap_info, 0, 5);
// Else output
} else {
cmd[off] = (char) data;