mirror of
https://github.com/lowRISC/ibex.git
synced 2025-04-22 04:47:25 -04:00
Fix variable names in icache scoreboard code
This commit is contained in:
parent
a93fc88f6f
commit
bce473b1dc
2 changed files with 4 additions and 4 deletions
4
dv/uvm/icache/dv/env/ibex_icache_env.sv
vendored
4
dv/uvm/icache/dv/env/ibex_icache_env.sv
vendored
|
@ -27,8 +27,8 @@ class ibex_icache_env extends dv_base_env #(
|
|||
function void connect_phase(uvm_phase phase);
|
||||
super.connect_phase(phase);
|
||||
if (cfg.en_scb) begin
|
||||
m_ibex_icache_core_agent.monitor.analysis_port.connect(scoreboard.ibex_icache_fifo.analysis_export);
|
||||
m_ibex_mem_intf_slave_agent.monitor.addr_ph_port.connect(scoreboard.ibex_mem_intf_slave_fifo.analysis_export);
|
||||
m_ibex_icache_core_agent.monitor.analysis_port.connect(scoreboard.core_fifo.analysis_export);
|
||||
m_ibex_mem_intf_slave_agent.monitor.addr_ph_port.connect(scoreboard.mem_fifo.analysis_export);
|
||||
end
|
||||
if (cfg.is_active && cfg.m_ibex_icache_core_agent_cfg.is_active) begin
|
||||
virtual_sequencer.core_sequencer_h = m_ibex_icache_core_agent.sequencer;
|
||||
|
|
|
@ -18,8 +18,8 @@ class ibex_icache_scoreboard extends dv_base_scoreboard #(
|
|||
|
||||
function void build_phase(uvm_phase phase);
|
||||
super.build_phase(phase);
|
||||
ibex_icache_fifo = new("ibex_icache_fifo", this);
|
||||
ibex_mem_intf_slave_fifo = new("ibex_mem_intf_slave_fifo", this);
|
||||
core_fifo = new("core_fifo", this);
|
||||
mem_fifo = new("mem_fifo", this);
|
||||
endfunction
|
||||
|
||||
function void connect_phase(uvm_phase phase);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue