diff options
author | Lizzy Fleckenstein <lizzy@vlhl.dev> | 2023-12-19 01:54:39 +0100 |
---|---|---|
committer | Lizzy Fleckenstein <lizzy@vlhl.dev> | 2023-12-19 02:11:32 +0100 |
commit | 6d263c7d4e0f4b1d34694b5d3d159ccb20b3db02 (patch) | |
tree | 41578268cf68b2d9ea1737687a0f98af979948d8 /stage3/io.h | |
parent | 5881b4d5c1040c762599f90e091e4cc4c3abe6b1 (diff) | |
download | cuddles-6d263c7d4e0f4b1d34694b5d3d159ccb20b3db02.tar.xz |
keyboard driver and threads
* PS/2 keyboard driver
* interactive shell
* move away from \0 terminated strings to sized slices
* coroutine threads and IRQ queues
Diffstat (limited to 'stage3/io.h')
-rw-r--r-- | stage3/io.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/stage3/io.h b/stage3/io.h index 1265043..bca094d 100644 --- a/stage3/io.h +++ b/stage3/io.h @@ -39,11 +39,6 @@ static inline u32 inl(u16 port) return val; } -static inline void hlt() -{ - asm volatile("hlt"); -} - typedef enum { IO_PIC1_CTRL = 0x20, IO_PIC1_DATA = 0x21, |