URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
Compare Revisions
- This comparison shows the changes necessary to convert path
/openrisc
- from Rev 864 to Rev 865
- ↔ Reverse comparison
Rev 864 → Rev 865
/trunk/or1200/rtl/verilog/or1200_ctrl.v
698,7 → 698,9
`ifdef OR1200_MULT_IMPLEMENTED |
`OR1200_OR32_MULI, |
`endif |
`ifdef OR1200_IMPL_ALU_ROTATE |
`OR1200_OR32_SH_ROTI, |
`endif |
`OR1200_OR32_SFXXI, |
`OR1200_OR32_MTSPR, |
`ifdef OR1200_MAC_IMPLEMENTED |
810,11 → 812,11
`OR1200_OR32_MULI: |
alu_op <= `OR1200_ALUOP_MUL; |
`endif |
|
`ifdef OR1200_IMPL_ALU_ROTATE |
// Shift and rotate insns with immediate |
`OR1200_OR32_SH_ROTI: |
alu_op <= `OR1200_ALUOP_SHROT; |
|
`endif |
// SFXX insns with immediate |
`OR1200_OR32_SFXXI: |
alu_op <= `OR1200_ALUOP_COMP; |
1008,9 → 1010,10
`endif |
|
// Shift and rotate insns with immediate |
`ifdef OR1200_IMPL_ALU_ROTATE |
`OR1200_OR32_SH_ROTI: |
rfwb_op <= {`OR1200_RFWBOP_ALU, 1'b1}; |
|
`endif |
// ALU instructions except the one with immediate |
`OR1200_OR32_ALU: |
rfwb_op <= {`OR1200_RFWBOP_ALU, 1'b1}; |