Device IRQs WIP

This commit is contained in:
2026-03-12 19:23:47 +01:00
parent 04b7355a3d
commit 19793e9126
29 changed files with 420 additions and 187 deletions

7
testing/make_empty_drive.sh Executable file
View File

@@ -0,0 +1,7 @@
#!/bin/sh
set -xe
rm -f empty_drive.img
dd if=/dev/zero of=empty_drive.img bs=1M count=128

View File

@@ -5,5 +5,6 @@ set -xe
rm -f test_drive.img
dd if=/dev/zero of=test_drive.img bs=1M count=128
mkfs.vfat -F 32 test_drive.img
parted test_drive.img --script mklabel msdos
parted test_drive.img --script mkpart primary fat32 1MiB 127MiB
mkfs.vfat -F 32 --offset 2048 test_drive.img