Removed unnecessary ALU ports

This commit is contained in:
Florian Zaruba 2017-04-17 17:59:25 +02:00
parent 6bcea38242
commit 2ab6192a02
2 changed files with 5 additions and 6 deletions

View file

@ -7,3 +7,5 @@ By widening the fetch interface to 64bit we could theoretically fetch two and mo
## Power-down Mode
The CSRs 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

View file

@ -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