fix formula

This commit is contained in:
Jörg Thalheim 2015-01-14 10:40:58 +01:00
parent 922124b0bf
commit 0bc4db9639
2 changed files with 3 additions and 2 deletions

View File

@ -107,7 +107,7 @@
|--+-------| |--+-------|
|---------------------------------+---------------| |---------------------------------+---------------|
| X -> BUS_A -> ALU_A | N/A | | X_{shift 1} -> BUS_A -> ALU_A | N/A |
| DIV_{shift 1} -> BUS_B -> ALU_B | ADD - N/A | | DIV_{shift 1} -> BUS_B -> ALU_B | ADD - N/A |
| | OLD_X_LTE_X_1 | | | OLD_X_LTE_X_1 |
| | DIV_4 | | | DIV_4 |

View File

@ -85,7 +85,8 @@ module heron_ctrl(
`DIV_2:; // noop `DIV_2:; // noop
`DIV_3:; // noop `DIV_3:; // noop
`DIV_4: begin `DIV_4: begin
x_to_a = ON; x_to_a_shift_1 = ON;
div_to_b_shift_1 = ON; div_to_b_shift_1 = ON;
end end
`OLD_X_LTE_X_1: begin `OLD_X_LTE_X_1: begin