Poke methods shouldn't be returning values.

Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
This commit is contained in:
Adrian Conlon 2019-05-15 22:48:34 +01:00
parent c4d52512b2
commit a78e6cb23c
1 changed files with 3 additions and 3 deletions

View File

@ -36,11 +36,11 @@ namespace EightBit
public void Poke(byte value) => this.Reference() = value;
public byte Poke(ushort absolute, byte value) => this.Reference(absolute) = value;
public void Poke(ushort absolute, byte value) => this.Reference(absolute) = value;
public byte Poke(Register16 absolute, byte value) => this.Poke(absolute.Word, value);
public void Poke(Register16 absolute, byte value) => this.Poke(absolute.Word, value);
public byte Poke(byte low, byte high, byte value) => this.Reference(low, high) = value;
public void Poke(byte low, byte high, byte value) => this.Reference(low, high) = value;
public byte Read()
{