1
0
mirror of https://github.com/antonblanchard/microwatt.git synced 2026-02-02 06:41:07 +00:00

Merge pull request #119 from antonblanchard/reduce-pipe-depth

control: Reduce pipeline depth to 1
This commit is contained in:
Anton Blanchard
2019-11-18 14:05:48 +11:00
committed by GitHub
2 changed files with 5 additions and 5 deletions

View File

@@ -57,7 +57,7 @@ architecture rtl of control is
begin
gpr_hazard0: entity work.gpr_hazard
generic map (
PIPELINE_DEPTH => 2
PIPELINE_DEPTH => PIPELINE_DEPTH
)
port map (
clk => clk,
@@ -72,7 +72,7 @@ begin
gpr_hazard1: entity work.gpr_hazard
generic map (
PIPELINE_DEPTH => 2
PIPELINE_DEPTH => PIPELINE_DEPTH
)
port map (
clk => clk,
@@ -87,7 +87,7 @@ begin
gpr_hazard2: entity work.gpr_hazard
generic map (
PIPELINE_DEPTH => 2
PIPELINE_DEPTH => PIPELINE_DEPTH
)
port map (
clk => clk,
@@ -102,7 +102,7 @@ begin
cr_hazard0: entity work.cr_hazard
generic map (
PIPELINE_DEPTH => 2
PIPELINE_DEPTH => PIPELINE_DEPTH
)
port map (
clk => clk,

View File

@@ -152,7 +152,7 @@ architecture behaviour of decode2 is
begin
control_0: entity work.control
generic map (
PIPELINE_DEPTH => 2
PIPELINE_DEPTH => 1
)
port map (
clk => clk,