MNET: wip devices

This commit is contained in:
swrup 2026-03-12 12:08:21 +01:00
parent 832098dd58
commit 7ed875cd5e
6 changed files with 162 additions and 79 deletions

17
src/fat.ml Normal file
View file

@ -0,0 +1,17 @@
module Fat = Mfat.Make (struct
include Mkernel.Block
let read = atomic_read
let write = atomic_write
end)
include Fat
type t = Mkernel.Block.t Mfat.t
module type FS = sig
val t : t
end