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 /util/dump2cuddlekeys/Makefile | |
| 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 'util/dump2cuddlekeys/Makefile')
| -rw-r--r-- | util/dump2cuddlekeys/Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/util/dump2cuddlekeys/Makefile b/util/dump2cuddlekeys/Makefile new file mode 100644 index 0000000..07b7bb2 --- /dev/null +++ b/util/dump2cuddlekeys/Makefile @@ -0,0 +1,8 @@ +dump2cuddlekeys: main.c + gcc -Wall -Wextra main.c -o dump2cuddlekeys + +dumpkeys: + dumpkeys -C/dev/tty1 | grep '^keycode' | less + +preview: map2cuddlekeys + dumpkeys -C/dev/tty1 | ./dump2cuddlekeys | hexdump -C |
