Mosa.HardwareSystem.DeviceDriverRegistry.DeviceDriverRegistry C# (CSharp) Method

DeviceDriverRegistry() public method

Initializes a new instance of the DeviceDriverRegistry class.
public DeviceDriverRegistry ( PlatformArchitecture platformArchitecture ) : System.Collections.Generic
platformArchitecture PlatformArchitecture The platform architecture.
return System.Collections.Generic
        public DeviceDriverRegistry(PlatformArchitecture platformArchitecture)
        {
            this.platformArchitecture = platformArchitecture;
            deviceDrivers = new LinkedList<DeviceDriver>();
        }