Mosa.HardwareSystem.HAL.AllocateMemory C# (CSharp) Method

AllocateMemory() public static method

Allocates the memory.
public static AllocateMemory ( uint size, uint alignment ) : IMemory
size uint The size.
alignment uint The alignment.
return IMemory
        public static IMemory AllocateMemory(uint size, uint alignment)
        {
            return hardwareAbstraction.AllocateMemory(size, alignment);
        }