mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-20 21:08:51 +00:00
10 lines
162 B
C#
10 lines
162 B
C#
using System;
|
|
|
|
namespace Cosmos.CPU {
|
|
public class Memory {
|
|
int mPtr;
|
|
public Memory(int aPtr) {
|
|
mPtr = aPtr;
|
|
}
|
|
}
|
|
}
|