Kernel: Implement RamdiskDevice

This commit is contained in:
Jean-Baptiste Boric 2021-01-19 22:33:00 +01:00 committed by Andreas Kling
commit 225957283e
Notes: sideshowbarker 2024-07-18 22:57:44 +09:00
8 changed files with 302 additions and 0 deletions

View file

@ -46,6 +46,7 @@ class StorageController : public RefCounted<StorageController> {
AK_MAKE_ETERNAL
public:
enum class Type : u8 {
Ramdisk,
IDE,
NVMe
};