Skip to content

Commit

Permalink
[rtl] CFU: minor cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
stnolting committed Jul 2, 2024
1 parent 2af4795 commit 7dac6fa
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions rtl/core/neorv32_cpu_cp_cfu.vhd
Original file line number Diff line number Diff line change
Expand Up @@ -111,9 +111,6 @@ library ieee;
use ieee.std_logic_1164.all;
use ieee.numeric_std.all;

library neorv32;
use neorv32.neorv32_package.all;

entity neorv32_cpu_cp_cfu is
port (
-- global control --
Expand Down Expand Up @@ -251,12 +248,7 @@ begin
-- -------------------------------------------------------------------------------------------
result_select: process(rtype_i, funct3_i, xtea)
begin
-- defaults --
result_o <= (others => '0');
valid_o <= '0';

-- check instruction type --
case rtype_i is
case rtype_i is -- check instruction type

when r3type_c => -- R3-type instructions; function select via "funct3" and ""funct7
-- ----------------------------------------------------------------------
Expand Down

0 comments on commit 7dac6fa

Please sign in to comment.