Skip to content

Commit

Permalink
Merge pull request #361 from antonblanchard/alt-reset-address
Browse files Browse the repository at this point in the history
Allow ALT_RESET_ADDRESS to be overridden
  • Loading branch information
mikey committed Mar 22, 2022
2 parents 8bf48ac + 948f6f4 commit f5e06c2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion soc.vhdl
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ entity soc is
HAS_BTC : boolean := true;
HAS_SHORT_MULT : boolean := false;
DISABLE_FLATTEN_CORE : boolean := false;
ALT_RESET_ADDRESS : std_logic_vector(63 downto 0) := (23 downto 0 => '0', others => '1');
HAS_DRAM : boolean := false;
DRAM_SIZE : integer := 0;
DRAM_INIT_SIZE : integer := 0;
Expand Down Expand Up @@ -336,7 +337,7 @@ begin
HAS_BTC => HAS_BTC,
HAS_SHORT_MULT => HAS_SHORT_MULT,
DISABLE_FLATTEN => DISABLE_FLATTEN_CORE,
ALT_RESET_ADDRESS => (23 downto 0 => '0', others => '1'),
ALT_RESET_ADDRESS => ALT_RESET_ADDRESS,
LOG_LENGTH => LOG_LENGTH,
ICACHE_NUM_LINES => ICACHE_NUM_LINES,
ICACHE_NUM_WAYS => ICACHE_NUM_WAYS,
Expand Down

0 comments on commit f5e06c2

Please sign in to comment.