internal void memp_free(memp_t type, memp pcb) { System.Diagnostics.Debug.Assert(pcb._type == type); memp_heap.Remove(pcb); }
internal static void memset(memp pcb, int c, int length) { System.Diagnostics.Debug.Assert(c == 0); //System.Diagnostics.Debug.Assert(pcb._type == 0); }