Пример #1
0
        void IMemoryDriver.CustomHeapLocation(out IntPtr BaseAddress, out uint SizeInBytes)
        {
            RamManager ram = this.RamManager;

            BaseAddress = (IntPtr)((long)ram.BaseAddress + ram.Size / 2);
            SizeInBytes = ram.Size / 2;
        }
Пример #2
0
        void IMemoryDriver.HeapLocation(out IntPtr BaseAddress, out uint SizeInBytes)
        {
            RamManager ram = this.RamManager;

            BaseAddress = ram.BaseAddress;
            SizeInBytes = ram.Size / 2;
        }