Added ID defines to crossbar
This commit is contained in:
parent
d33b027e28
commit
bf1e95a576
@ -306,16 +306,18 @@ begin
|
||||
)
|
||||
port map(
|
||||
clk => clk,
|
||||
rst => rst,
|
||||
rst => rst,
|
||||
slave_i => intercon_master_o,
|
||||
slave_o => intercon_master_i,
|
||||
master_i => intercon_slave_o,
|
||||
master_o => intercon_slave_i,
|
||||
address => (0 => x"00000000", -- SRAM
|
||||
1 => x"80000000"
|
||||
address => (
|
||||
INTERCON_ID_SRAM => x"00000000",
|
||||
INTERCON_ID_DDR3 => x"80000000"
|
||||
),
|
||||
mask => (0 => x"ffff0000",
|
||||
1 => x"f0000000"
|
||||
mask => (
|
||||
INTERCON_ID_SRAM => x"ffff0000",
|
||||
INTERCON_ID_DDR3 => x"f0000000"
|
||||
)
|
||||
);
|
||||
end architecture RTL;
|
||||
|
Loading…
Reference in New Issue
Block a user