diff options
author | Freya Murphy <freya@freyacat.org> | 2024-01-29 19:19:29 -0500 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2024-01-29 19:19:29 -0500 |
commit | b9754579df4eeff3d94aed514a37920d68d39940 (patch) | |
tree | 88509189d763bc1df17746048d519f79e505aa4d /src/kmain.c | |
parent | pic (diff) | |
download | corn-b9754579df4eeff3d94aed514a37920d68d39940.tar.gz corn-b9754579df4eeff3d94aed514a37920d68d39940.tar.bz2 corn-b9754579df4eeff3d94aed514a37920d68d39940.zip |
pic done
Diffstat (limited to '')
-rw-r--r-- | src/kmain.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/kmain.c b/src/kmain.c index 4bd2190..701c135 100644 --- a/src/kmain.c +++ b/src/kmain.c @@ -13,4 +13,8 @@ void kmain(struct boot_info *info) { itoa(*(long*)info, buf, 16); //fb_init(1024, 768); serial_out_str(buf); + while (1) { + // loop so we dont halt + // this allows interrupts to fire + } } |