Esempio n. 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;
        }
Esempio n. 2
0
        void IMemoryDriver.HeapLocation(out IntPtr BaseAddress, out uint SizeInBytes)
        {
            RamManager ram = this.RamManager;

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