mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2026-01-25 06:17:49 +00:00
Small consistency change
This commit is contained in:
@@ -803,14 +803,14 @@ namespace LR35902
|
||||
this.MemoryWrite(this.C, IoRegisters.BasePage, this.A);
|
||||
break;
|
||||
case 5: // GB: LD (nn),A
|
||||
this.MEMPTR.Assign(this.FetchWord());
|
||||
this.FetchWordMEMPTR();
|
||||
this.MemoryWrite(this.MEMPTR, this.A);
|
||||
break;
|
||||
case 6: // GB: LD A,(FF00 + C)
|
||||
this.A = this.MemoryRead(this.C, IoRegisters.BasePage);
|
||||
break;
|
||||
case 7: // GB: LD A,(nn)
|
||||
this.MEMPTR.Assign(this.FetchWord());
|
||||
this.FetchWordMEMPTR();
|
||||
this.A = this.MemoryRead(this.MEMPTR);
|
||||
break;
|
||||
default:
|
||||
|
||||
Reference in New Issue
Block a user