XHCI baby steps!
All checks were successful
Build ISO image / build-and-deploy (push) Successful in 3m31s
Build documentation / build-and-deploy (push) Successful in 2m55s

This commit is contained in:
2026-03-22 17:59:54 +01:00
parent 72715d19e0
commit a4c5df8db4
7 changed files with 228 additions and 4 deletions

View File

@@ -17,11 +17,15 @@ ifeq ($(platform),amd64)
device/idedrv.c \
device/pci.c \
device/pci_defs.c \
device/pci_ide.c
device/pci_ide.c \
device/pci_xhci.c \
device/xhci.c
o += device/ps2_kb.o \
device/idedrv.o \
device/pci.o \
device/pci_defs.o \
device/pci_ide.o
device/pci_ide.o \
device/pci_xhci.o \
device/xhci.o
endif