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

DeviceDriver() public method

Initializes a new instance of the DeviceDriver class.
public DeviceDriver ( IDeviceDriver deviceDriverAttribute, Type driverType ) : System
deviceDriverAttribute IDeviceDriver The device driver attribute.
driverType System.Type Type of the driver.
return System
        public DeviceDriver(IDeviceDriver deviceDriverAttribute, Type driverType)
        {
            Attribute = deviceDriverAttribute;
            DriverType = driverType;
            MemoryAttributes = new LinkedList<DeviceDriverPhysicalMemoryAttribute>();
        }