mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2026-01-22 16:16:17 +00:00
Save a single byte assignment in JSR implementation
This commit is contained in:
@@ -1051,8 +1051,8 @@ namespace EightBit
|
||||
this.Intermediate.Low = this.FetchByte();
|
||||
this.SwallowPop();
|
||||
this.PushWord(this.PC);
|
||||
this.Intermediate.High = this.FetchByte();
|
||||
this.PC.Assign(this.Intermediate);
|
||||
this.PC.High = this.FetchByte();
|
||||
this.PC.Low = this.Intermediate.Low;
|
||||
}
|
||||
|
||||
private void PHP() => this.Push(SetBit(this.P, StatusBits.BF));
|
||||
|
||||
Reference in New Issue
Block a user