Commit 0eb9416

Nick committed on
Fix rla instruction
commit 0eb94163d0f5bf570842db6128f043ec31823a07 parent 857c778
1 changed files +1−1
ModifiedCpu/z80cpu.pas +1−1
@@ -219,7 +219,7 @@ var
219 btemp: byte; 219 btemp: byte;
220 begin 220 begin
221 btemp := af.l and 1; 221 btemp := af.l and 1;
222 af.l := rla_f[btemp][af.h] or (af.l and 196); 222 af.l := rla_f[btemp][af.h]; // or (af.l and 196); NOTE
223 af.h := rla_a[btemp][af.h]; 223 af.h := rla_a[btemp][af.h];
224 224
225 Result := 4; 225 Result := 4;