Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU.x86/Memory.cs

10 lines
168 B
C#

using System;
namespace Cosmos.CPU.x86 {
public class Memory2 {
int mPtr;
public Memory2(int aPtr) {
mPtr = aPtr;
}
}
}