mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2025-11-23 07:20:02 +00:00
Couple of small Register16 adjustments
This commit is contained in:
@@ -311,7 +311,7 @@ namespace EightBit
|
||||
this.SetWord(value);
|
||||
}
|
||||
|
||||
protected void Jump(ushort destination) => this.PC.Assign(destination);
|
||||
protected void Jump(ushort destination) => this.PC.Word = destination;
|
||||
|
||||
protected void Jump(Register16 destination) => this.PC.Assign(destination);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user