1
0
mirror of https://github.com/antonblanchard/microwatt.git synced 2026-04-05 04:35:00 +00:00

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

Remove SIM generic from execute1
This commit is contained in:
Anton Blanchard
2019-10-25 15:52:24 +11:00
committed by GitHub
2 changed files with 1 additions and 11 deletions

View File

@@ -196,9 +196,6 @@ begin
);
execute1_0: entity work.execute1
generic map (
SIM => SIM
)
port map (
clk => clk,
flush_out => flush,

View File

@@ -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;
@@ -340,11 +337,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 =>