mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
18 lines
525 B
C#
18 lines
525 B
C#
#define COSMOSDEBUG
|
|
using System;
|
|
using Cosmos.Core_Asm.MemoryOperations;
|
|
using Cosmos.IL2CPU.API;
|
|
using Cosmos.IL2CPU.API.Attribs;
|
|
|
|
namespace Cosmos.Core_Plugs.MemoryOperations
|
|
{
|
|
[Plug(Target = typeof(Cosmos.Core.MemoryOperations))]
|
|
public unsafe class MemoryOperationsImpl
|
|
{
|
|
[PlugMethod(Assembler = typeof(MemoryOperationsFill16BlocksAsm))]
|
|
public static unsafe void Fill16Blocks(byte* dest, int value, int BlocksNum)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|