Mosa.HardwareSystem.MemoryResources.GetMemory C# (CSharp) Method

GetMemory() public method

Gets the memory.
public GetMemory ( uint address, uint size ) : IMemory
address uint The address.
size uint The size.
return IMemory
        public IMemory GetMemory(uint address, uint size)
        {
            return HAL.RequestPhysicalMemory(address, size);
        }