mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
16 lines
373 B
C#
16 lines
373 B
C#
using System;
|
|
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
|
|
|
namespace Cosmos.Core.Memory.Test {
|
|
[TestClass]
|
|
public class UnitTest1 {
|
|
[TestMethod]
|
|
unsafe public void TestMethod1() {
|
|
var xRAM = new byte[128 * 1024 * 1024];
|
|
xRAM[0] = 1;
|
|
fixed (byte* xPtr = xRAM) {
|
|
CHeap.Init(xPtr, (UInt32)xRAM.LongLength);
|
|
}
|
|
}
|
|
}
|
|
}
|