alu: return to previous
[calu.git] / cpu / src / execute_stage_b.vhd
index 79a36614762a2e5286f35e7be6c25ec683753c22..550c1e9683bb1fec35bcbcadf33c371b22edd37e 100644 (file)
@@ -29,7 +29,7 @@ begin
 
 alu_inst : alu
 port map(clk, reset, condition, op_group, 
-         left_operand, right_operand, dec_instr.displacement, op_detail, alu_state, alu_nxt);
+         left_operand, right_operand, dec_instr.displacement, op_detail, alu_state, alu_nxt,addr,data);
 
 gpm_inst : gpm
         generic map(RESET_VALUE)
@@ -106,8 +106,8 @@ hword <= alu_nxt.hw_op;
 --hword <= reg.result(1);
 byte_s <= alu_nxt.byte_op;
 
-addr <= alu_nxt.result;
-data <= right_operand;
+--addr <= alu_nxt.result;
+--data <= right_operand;
 --byte_s <= reg.result(2);
 end behav;