mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2025-01-10 15:29:47 +00:00
Poke methods shouldn't be returning values.
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
This commit is contained in:
parent
c4d52512b2
commit
a78e6cb23c
@ -36,11 +36,11 @@ namespace EightBit
|
|||||||
|
|
||||||
public void Poke(byte value) => this.Reference() = value;
|
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()
|
public byte Read()
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user