From bd4ac062435091cb03a8ae03feab199907ea4a2d Mon Sep 17 00:00:00 2001 From: Michael Neuling Date: Thu, 24 Oct 2019 17:07:58 +1100 Subject: [PATCH] Remove SIM generic from execute1 This does nothing, so remove. Signed-off-by: Michael Neuling --- core.vhdl | 3 --- execute1.vhdl | 9 +-------- 2 files changed, 1 insertion(+), 11 deletions(-) diff --git a/core.vhdl b/core.vhdl index 5a269a2..572e18b 100644 --- a/core.vhdl +++ b/core.vhdl @@ -195,9 +195,6 @@ begin ); execute1_0: entity work.execute1 - generic map ( - SIM => SIM - ) port map ( clk => clk, flush_out => flush, diff --git a/execute1.vhdl b/execute1.vhdl index de18a37..b048c25 100644 --- a/execute1.vhdl +++ b/execute1.vhdl @@ -11,9 +11,6 @@ use work.insn_helpers.all; use work.ppc_fx_insns.all; entity execute1 is - generic ( - SIM : boolean := false - ); port ( clk : in std_logic; @@ -334,11 +331,7 @@ begin when OP_SIM_CONFIG => -- bit 0 was used to select the microwatt console, which -- we no longer support. - if SIM = true then - result := x"0000000000000000"; - else - result := x"0000000000000000"; - end if; + result := x"0000000000000000"; result_en := '1'; when OP_TDI =>