|
|
@ -58,7 +58,10 @@ entity toplevel is
|
|
|
|
ib_pty : in std_ulogic;
|
|
|
|
ib_pty : in std_ulogic;
|
|
|
|
|
|
|
|
|
|
|
|
-- Add an I/O pin to select fetching from flash on reset
|
|
|
|
-- Add an I/O pin to select fetching from flash on reset
|
|
|
|
alt_reset : in std_ulogic
|
|
|
|
alt_reset : in std_ulogic;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-- unused
|
|
|
|
|
|
|
|
wb_ext_io_out : out wb_io_slave_out
|
|
|
|
);
|
|
|
|
);
|
|
|
|
end entity toplevel;
|
|
|
|
end entity toplevel;
|
|
|
|
|
|
|
|
|
|
|
@ -84,6 +87,9 @@ begin
|
|
|
|
|
|
|
|
|
|
|
|
system_rst <= not ext_rst when RESET_LOW else ext_rst;
|
|
|
|
system_rst <= not ext_rst when RESET_LOW else ext_rst;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-- Unused, but tie it off
|
|
|
|
|
|
|
|
wb_ext_io_out <= wb_io_slave_out_init;
|
|
|
|
|
|
|
|
|
|
|
|
-- Main SoC
|
|
|
|
-- Main SoC
|
|
|
|
soc0: entity work.soc
|
|
|
|
soc0: entity work.soc
|
|
|
|
generic map(
|
|
|
|
generic map(
|
|
|
|