mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
10 lines
168 B
C#
10 lines
168 B
C#
using System;
|
|
|
|
namespace Cosmos.CPU.x86 {
|
|
public class Memory2 {
|
|
int mPtr;
|
|
public Memory2(int aPtr) {
|
|
mPtr = aPtr;
|
|
}
|
|
}
|
|
}
|