Merge pull request #113 from mikey/exec-sim-remove

Remove SIM generic from execute1
pull/116/head
Anton Blanchard 5 years ago committed by GitHub
commit 247d7d4aa0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -196,9 +196,6 @@ begin
); );


execute1_0: entity work.execute1 execute1_0: entity work.execute1
generic map (
SIM => SIM
)
port map ( port map (
clk => clk, clk => clk,
flush_out => flush, flush_out => flush,

@ -11,9 +11,6 @@ use work.insn_helpers.all;
use work.ppc_fx_insns.all; use work.ppc_fx_insns.all;


entity execute1 is entity execute1 is
generic (
SIM : boolean := false
);
port ( port (
clk : in std_logic; clk : in std_logic;


@ -340,11 +337,7 @@ begin
when OP_SIM_CONFIG => when OP_SIM_CONFIG =>
-- bit 0 was used to select the microwatt console, which -- bit 0 was used to select the microwatt console, which
-- we no longer support. -- we no longer support.
if SIM = true then result := x"0000000000000000";
result := x"0000000000000000";
else
result := x"0000000000000000";
end if;
result_en := '1'; result_en := '1';


when OP_TDI => when OP_TDI =>

Loading…
Cancel
Save