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

View File

@@ -12,10 +12,14 @@ o += device/device.o \
ifeq ($(platform),amd64)
c += device/ps2_kb.c \
device/idedrv.c \
device/pci.c \
device/pci_defs.c
device/pci_defs.c \
device/pci_ide.c
o += device/ps2_kb.o \
device/idedrv.o \
device/pci.o \
device/pci_defs.o
device/pci_defs.o \
device/pci_ide.o
endif