mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-20 21:08:51 +00:00
22 lines
581 B
C#
22 lines
581 B
C#
using System;
|
|
using Cosmos.CPU.x86.Memory.Old;
|
|
using IL2CPU.API.Attribs;
|
|
|
|
namespace Cosmos.CPU_Plugs {
|
|
[Plug(Target = typeof(Cosmos.CPU.x86.GCImplementation))]
|
|
public static class GCImplementationImpl {
|
|
public static uint AllocNewObject(uint aSize) {
|
|
GlobalSystemInfo.EnsureInitialized();
|
|
return Heap.MemAlloc(aSize);
|
|
}
|
|
|
|
public static void IncRefCount(uint aObject) {
|
|
// Do nothing right now
|
|
}
|
|
|
|
public static void DecRefCount(uint aObject) {
|
|
// Do nothing right now
|
|
}
|
|
|
|
}
|
|
}
|