Cosmos/source/Kernel-X86/10-CPU/Cosmos.CPU/Memory.cs
2017-08-06 16:23:24 -04:00

10 lines
168 B
C#

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