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