mirror of
https://github.com/openhwgroup/cva6.git
synced 2025-04-22 05:07:21 -04:00
Removed unnecessary ALU ports
This commit is contained in:
parent
6bcea38242
commit
2ab6192a02
2 changed files with 5 additions and 6 deletions
|
@ -7,3 +7,5 @@ By widening the fetch interface to 64bit we could theoretically fetch two and mo
|
|||
## Power-down Mode
|
||||
|
||||
The CSR’s APB interface would allow for storing the CPU state (registers, CSR registers, etc.) to a state retentive memory when the core is in complete power down.
|
||||
|
||||
## Input silencing of ALU
|
|
@ -31,12 +31,9 @@ module alu_tb;
|
|||
.operand_b_i ( alu_if.operand_b ),
|
||||
.result_o ( alu_if.result ),
|
||||
.comparison_result_o ( alu_if.comparison_result ),
|
||||
.is_equal_result_o ( ),
|
||||
.adder_result_ext_o ( ),
|
||||
.adder_result_o ( ),
|
||||
.multdiv_en_i ( 1'b0 ),
|
||||
.multdiv_operand_b_i ( 65'b0 ),
|
||||
.multdiv_operand_a_i ( 65'b0 )
|
||||
.is_equal_result_o ( ),
|
||||
.adder_result_ext_o ( ),
|
||||
.adder_result_o ( )
|
||||
);
|
||||
|
||||
initial begin
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue