]> Joshua Wise's Git repositories - fpgaboy.git/blobdiff - core/insn_alu_a.v
Fix some carry-related bugs and a typo in insn_alu_a.
[fpgaboy.git] / core / insn_alu_a.v
index 14ccd76aae620ee90b99b6d54a463859e24d12af..a5e1c1c6778e443a4009513493caa39e586a50b8 100644 (file)
@@ -32,7 +32,7 @@
                        `_F <= {`_F[7:5],`_A[7],`_F[3:0]};
                end
                `INSN_alu_RRA: begin
-                       `_A <= {`_A[4],`_A[7:1]};
+                       `_A <= {`_F[4],`_A[7:1]};
                        `_F <= {`_F[7:5],`_A[0],`_F[3:0]};
                end
                `INSN_alu_CPL: begin
This page took 0.023496 seconds and 4 git commands to generate.