Moved reading file from disk to its own super visor terminal command
- Updated gdt assembly - Updated Interrupt service request handlers - Improved virtual memory manager - NOTE: we're dependent on identity mappings for the heap to work
This commit is contained in:
		@ -185,7 +185,11 @@ void PrintPCIDeviceInfo (PCIBusAddress& PCIDeviceAddress)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
void PCI_Enumerate(){
 | 
			
		||||
            int devicesFound = 0;
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
        int devicesFound = 0;
 | 
			
		||||
 | 
			
		||||
        printf("Start finding devices, Found: %d devices");
 | 
			
		||||
        // loop through all possible busses, devices and their functions;
 | 
			
		||||
        for( int bus = 0 ; bus < 256 ; bus++)
 | 
			
		||||
        {
 | 
			
		||||
 | 
			
		||||
@ -10,8 +10,6 @@
 | 
			
		||||
 | 
			
		||||
extern const char* ClassCodeTable [0x13];
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
// Note: this could be used to make the api for receiving PCI class codes a bit 
 | 
			
		||||
// nicer.
 | 
			
		||||
struct ClassCodes {
 | 
			
		||||
 | 
			
		||||
		Reference in New Issue
	
	Block a user