14 lines
214 B
C
14 lines
214 B
C
|
#include <stdio.h>
|
||
|
#include "pci.h"
|
||
|
int main() {
|
||
|
FILE* file;
|
||
|
do {
|
||
|
file=fopen("/dev/vga","w");
|
||
|
} while(file==NULL);
|
||
|
do {
|
||
|
file=fopen("/dev/vga","w");
|
||
|
} while(file==NULL);
|
||
|
yield();
|
||
|
pci_init();
|
||
|
}
|