mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2025-01-23 23:30:07 +00:00
19 lines
448 B
C#
19 lines
448 B
C#
// <copyright file="Ram.cs" company="Adrian Conlon">
|
|
// Copyright (c) Adrian Conlon. All rights reserved.
|
|
// </copyright>
|
|
|
|
namespace EightBit
|
|
{
|
|
public class Ram(int size) : Rom(size)
|
|
{
|
|
public Ram()
|
|
: this(0)
|
|
{
|
|
}
|
|
|
|
public override sealed ref byte Reference(ushort address) => ref this.Bytes()[address];
|
|
|
|
public new void Poke(ushort address, byte value) => base.Poke(address, value);
|
|
}
|
|
}
|