PCI IDE driver, new create_volume () syscall, test scripts
All checks were successful
Build documentation / build-and-deploy (push) Successful in 2m37s

This commit is contained in:
2026-03-10 18:14:18 +01:00
parent 01c51ac63f
commit 38557bab7d
24 changed files with 726 additions and 39 deletions

16
kernel/device/pci_info.h Normal file
View File

@@ -0,0 +1,16 @@
#ifndef _KERNEL_DEVICE_PCI_INFO_H
#define _KERNEL_DEVICE_PCI_INFO_H
#include <libk/std.h>
struct pci_info {
uint8_t bus;
uint8_t slot;
uint8_t func;
uint16_t vendor;
uint16_t device;
uint8_t class;
uint8_t subclass;
};
#endif // _KERNEL_DEVICE_PCI_INFO_H