umka/win32/pci.c
2021-12-12 21:54:02 +03:00

13 lines
345 B
C
Executable File

#include "pci.h"
#include <stdint.h>
char pci_path[PATH_MAX] = ".";
__attribute__((stdcall)) uint32_t pci_read(uint32_t bus, uint32_t dev,
uint32_t fun, uint32_t offset,
size_t len) {
printf("STUB: %s:%d", __FILE__, __LINE__);
return 0xffffffff;
}