Re-export imported symbols from ibex_mem_intf_pkg

Other code tries to pick up things like DATA_WIDTH through this agent
package, that it imports. That doesn't seem unreasonable, but VCS
complains because we're not re-exporting it here.
This commit is contained in:
Rupert Swarbrick 2023-05-15 11:08:29 +01:00
parent 1e0adfce68
commit 3b34f803f5
1 changed files with 4 additions and 0 deletions

View File

@ -22,4 +22,8 @@ package ibex_mem_intf_agent_pkg;
`include "ibex_mem_intf_request_driver.sv"
`include "ibex_mem_intf_request_agent.sv"
// Re-export parameters from ibex_mem_intf_pkg so that other packages can access them through this
// package.
export ibex_mem_intf_pkg::*;
endpackage