Skip to content

Commit

Permalink
Merge pull request #12 from d1duarte/patch-4
Browse files Browse the repository at this point in the history
Corrected the 'v_RCP_F32' instruction so it produces the correct resu…
  • Loading branch information
vinaygangadhar committed Apr 25, 2016
2 parents ba98a6e + 440860b commit 6ed8804
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/verilog/rtl/simf/simf_alu.v
Original file line number Diff line number Diff line change
Expand Up @@ -156,8 +156,8 @@ module simf_alu
end
{1'b1, `ALU_VOP1_FORMAT, 12'h02A} : //V_RCP_F32 - VIN
begin
alu_done <= 1'b1;
fpu_start_i <= 1'b0;
alu_done <= fpu_ready_o;
fpu_start_i <= alu_start;
fpu_op_i <= 3'b011;
fpu_opa_i <= 32'h3f80_0000;
fpu_opb_i <= final_source1_data;
Expand Down

0 comments on commit 6ed8804

Please sign in to comment.